From 17754af10efbca4028a845fbee67e6f800fec8d6 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Thu, 1 Oct 2009 21:51:11 +0200 Subject: [PATCH] Configure checks for netlibs (-lnsl, -lsocket). This should allow Pazpar2 to use getaddrinfo on Solaris. --- configure.ac | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/configure.ac b/configure.ac index 673e3a6..e4f77b8 100644 --- a/configure.ac +++ b/configure.ac @@ -28,6 +28,17 @@ fi YAZ_DOC AC_CHECK_HEADERS([sys/time.h sys/socket.h unistd.h netinet/in.h netdb.h arpa/inet.h glob.h]) +checkBoth=0 +AC_CHECK_FUNC([connect]) +if test "$ac_cv_func_connect" = "no"; then + AC_CHECK_LIB([socket],[main], LIBS="$LIBS -lsocket", checkBoth=1) +fi +if test "$checkBoth" = "1"; then + oldLibs=$LIBS + LIBS="$LIBS -lsocket -lnsl" + AC_CHECK_FUNC([accept], , [LIBS=$oldLibs]) +fi +AC_CHECK_FUNC([gethostbyname], ,[AC_CHECK_LIB(nsl, main, [LIBS="$LIBS -lnsl"])]) AC_CHECK_FUNCS([getaddrinfo]) if test -d ${srcdir}/.git; then -- 1.7.10.4