diff options
| author | Cory Fields <[email protected]> | 2018-07-19 14:21:05 -0400 |
|---|---|---|
| committer | Lawrence Nahum <[email protected]> | 2018-09-01 15:25:03 +0200 |
| commit | 9256f7d13f5b68ebc2981e8f45777f4bdc43f1b3 (patch) | |
| tree | e38a99ab0f436e22098f6890ba4624541af6fd96 | |
| parent | Merge #14122: Test rpc_help.py failed: Check whether ZMQ is enabled or not. (diff) | |
| download | discoin-9256f7d13f5b68ebc2981e8f45777f4bdc43f1b3.tar.xz discoin-9256f7d13f5b68ebc2981e8f45777f4bdc43f1b3.zip | |
build: avoid getifaddrs when unavailable
| -rw-r--r-- | configure.ac | 4 | ||||
| -rw-r--r-- | src/net.cpp | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 4275796b5..bbf5f642a 100644 --- a/configure.ac +++ b/configure.ac @@ -727,6 +727,10 @@ fi AC_CHECK_HEADERS([endian.h sys/endian.h byteswap.h stdio.h stdlib.h unistd.h strings.h sys/types.h sys/stat.h sys/select.h sys/prctl.h]) +AC_CHECK_DECLS([getifaddrs, freeifaddrs],,, + [#include <sys/types.h> + #include <ifaddrs.h>] +) AC_CHECK_DECLS([strnlen]) # Check for daemon(3), unrelated to --with-daemon (although used by it) diff --git a/src/net.cpp b/src/net.cpp index ad9c5e1d8..b3a991b70 100644 --- a/src/net.cpp +++ b/src/net.cpp @@ -2167,7 +2167,7 @@ void Discover() } } } -#else +#elif (HAVE_DECL_GETIFADDRS && HAVE_DECL_FREEIFADDRS) // Get local host ip struct ifaddrs* myaddrs; if (getifaddrs(&myaddrs) == 0) |