aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2015-04-10 13:02:26 +0200
committerAndreas Schneider <asn@cryptomilk.org>2015-04-10 13:02:56 +0200
commit69c9cd029f487b682d82b82aa4e6833017387fcd (patch)
treef894534b07b82fba060cdc764a7e9a556b3ac8d4
parentc699b9ca94ed49d09250058a6ec0e762f4ab2faa (diff)
downloadlibssh-69c9cd029f487b682d82b82aa4e6833017387fcd.tar.gz
libssh-69c9cd029f487b682d82b82aa4e6833017387fcd.tar.xz
libssh-69c9cd029f487b682d82b82aa4e6833017387fcd.zip
cmake: Check for arpa/inet.h header file
Signed-off-by: Andreas Schneider <asn@cryptomilk.org>
-rw-r--r--ConfigureChecks.cmake1
-rw-r--r--src/packet_cb.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/ConfigureChecks.cmake b/ConfigureChecks.cmake
index 650ff4ed..902b4a31 100644
--- a/ConfigureChecks.cmake
+++ b/ConfigureChecks.cmake
@@ -54,6 +54,7 @@ check_include_file(unistd.h HAVE_UNISTD_H)
check_include_file(util.h HAVE_UTIL_H)
check_include_file(libutil.h HAVE_LIBUTIL_H)
check_include_file(sys/time.h HAVE_SYS_TIME_H)
+check_include_file(arpa/inet.h HAVE_ARPA_INET_H)
if (WIN32)
check_include_files("winsock2.h;ws2tcpip.h;wspiapi.h" HAVE_WSPIAPI_H)
diff --git a/src/packet_cb.c b/src/packet_cb.c
index 5b759a3e..17e39a4c 100644
--- a/src/packet_cb.c
+++ b/src/packet_cb.c
@@ -24,7 +24,9 @@
#include "config.h"
#include <stdlib.h>
+#ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h>
+#endif
#include "libssh/priv.h"
#include "libssh/buffer.h"