diff options
| author | Wladimir J. van der Laan <[email protected]> | 2017-03-17 09:40:14 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2017-03-17 09:40:21 +0100 |
| commit | 32d1b344985f82796292fec80ee5621c9a268431 (patch) | |
| tree | bc2689fe073a2c6d1d5ecd81e7be658c7c9fcfa9 | |
| parent | Merge #9921: build: Probe MSG_DONTWAIT in the same way as MSG_NOSIGNAL (diff) | |
| parent | build: Fix typo s/HAVE_DONTWAIT/HAVE_MSG_DONTWAIT (diff) | |
| download | discoin-32d1b344985f82796292fec80ee5621c9a268431.tar.xz discoin-32d1b344985f82796292fec80ee5621c9a268431.zip | |
Merge #10011: build: Fix typo s/HAVE_DONTWAIT/HAVE_MSG_DONTWAIT
5073100 build: Fix typo s/HAVE_DONTWAIT/HAVE_MSG_DONTWAIT (Wladimir J. van der Laan)
Tree-SHA512: 2305fd68afe940611da10bdebd4994a12612f610365e980313d7e75e13935252366efcaae6cb52da5f8d7e022a164399a3185b385151276ea3843fdcc231fdb1
| -rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 65f7fa073..220fc62f8 100644 --- a/configure.ac +++ b/configure.ac @@ -562,7 +562,7 @@ dnl Check for MSG_DONTWAIT AC_MSG_CHECKING(for MSG_DONTWAIT) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <sys/socket.h>]], [[ int f = MSG_DONTWAIT; ]])], - [ AC_MSG_RESULT(yes); AC_DEFINE(HAVE_DONTWAIT, 1,[Define this symbol if you have MSG_DONTWAIT]) ], + [ AC_MSG_RESULT(yes); AC_DEFINE(HAVE_MSG_DONTWAIT, 1,[Define this symbol if you have MSG_DONTWAIT]) ], [ AC_MSG_RESULT(no)] ) |