aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Johnson <obeythepenguin@gmail.com>2012-03-22 23:33:33 +0100
committerDaniel Stenberg <daniel@haxx.se>2012-03-22 23:33:33 +0100
commitf85ec43f2425cc95e043fad1235d15f813ff891a (patch)
tree3c2ae7abde18fd0e39bc027df42f69938047c283
parentb5713887ae8bbc7c3ee84201906e4e6ca4ebb4a1 (diff)
configure: check for gethostbyname in the watt lib
This allows building of libcurl on DOS using DJGPP 2.04 and Watt-32 sockets. I know there's already Makefile.djgpp, but I find this more convenient since I'm used to using the ./configure script from other platforms
-rw-r--r--configure.ac11
1 files changed, 11 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 631563dea..7feb364a9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -696,6 +696,17 @@ then
])
fi
+if test "$HAVE_GETHOSTBYNAME" != "1"
+then
+ dnl gethostbyname in the watt lib?
+ AC_CHECK_LIB(watt, gethostbyname,
+ [HAVE_GETHOSTBYNAME="1"
+ CPPFLAGS="-I/dev/env/WATT_ROOT/inc"
+ LDFLAGS="-L/dev/env/WATT_ROOT/lib"
+ LIBS="$LIBS -lwatt"
+ ])
+fi
+
dnl At least one system has been identified to require BOTH nsl and socket
dnl libs at the same time to link properly.
if test "$HAVE_GETHOSTBYNAME" != "1"