Skip to content

Commit 5073100

Browse files
committed
build: Fix typo s/HAVE_DONTWAIT/HAVE_MSG_DONTWAIT
Introduced in #9921. Thanks to Pavol Rusnak for spotting this one.
1 parent 8b789d8 commit 5073100

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -562,7 +562,7 @@ dnl Check for MSG_DONTWAIT
562562
AC_MSG_CHECKING(for MSG_DONTWAIT)
563563
AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/socket.h>]],
564564
[[ int f = MSG_DONTWAIT; ]])],
565-
[ AC_MSG_RESULT(yes); AC_DEFINE(HAVE_DONTWAIT, 1,[Define this symbol if you have MSG_DONTWAIT]) ],
565+
[ AC_MSG_RESULT(yes); AC_DEFINE(HAVE_MSG_DONTWAIT, 1,[Define this symbol if you have MSG_DONTWAIT]) ],
566566
[ AC_MSG_RESULT(no)]
567567
)
568568

0 commit comments

Comments
 (0)