aboutsummaryrefslogtreecommitdiff
path: root/src/net.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <laanwj@gmail.com>2018-09-10 18:07:53 +0200
committerWladimir J. van der Laan <laanwj@gmail.com>2018-09-10 18:08:05 +0200
commit7c7bb6e7726a13443a9ad0231808f2858636b39f (patch)
treed877c707c01c9a44f04acd5f4378b0cf70fece9e /src/net.cpp
parent6eeac2e628b5332dcaee60e5c83861c94e44d04d (diff)
parent9256f7d13f5b68ebc2981e8f45777f4bdc43f1b3 (diff)
downloadbitcoin-7c7bb6e7726a13443a9ad0231808f2858636b39f.tar.xz
Merge #14127: build: avoid getifaddrs when unavailable
9256f7d13f5b68ebc2981e8f45777f4bdc43f1b3 build: avoid getifaddrs when unavailable (Cory Fields) Pull request description: These changes from @theuni help building when targeting platforms that don't always have getifaddrs available like Android < 24 Tree-SHA512: dbfeb83297bd6f00b7991f53eef8a04948d2d739bf47c0524d9ae5335b843b8a5c06ff98c109fe5e6192665e6d0cf58700b8aa7e2a0b410281d3c052881973ff
Diffstat (limited to 'src/net.cpp')
-rw-r--r--src/net.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net.cpp b/src/net.cpp
index c51a1b4a74..f83f39a67d 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)