Skip to content

Commit

Permalink
Fix typo in meson.build (#2070)
Browse files Browse the repository at this point in the history
  • Loading branch information
falbrechtskirchinger authored Feb 19, 2025
1 parent 2b5d1ee commit 5c0135f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ endif
if cxx.has_function('poll', prefix: '#include <poll.h>')
# Use poll if present
add_project_arguments('-DCPPHTTPLIB_USE_POLL', language: 'cpp')
else if cxx.has_function('select', prefix: '#include <sys/select.h>')
elif cxx.has_function('select', prefix: '#include <sys/select.h>')
# Use select otherwise
add_project_arguments('-DCPPHTTPLIB_USE_SELECT', language: 'cpp')
endif
Expand Down

0 comments on commit 5c0135f

Please sign in to comment.