[exim-cvs] Fix testsuite build on Solaris

Inizio della pagina
Delete this message
Reply to this message
Autore: Exim Git Commits Mailing List
Data:  
To: exim-cvs
Oggetto: [exim-cvs] Fix testsuite build on Solaris
Gitweb: http://git.exim.org/exim.git/commitdiff/a4ca1b01d4376f9b9ca7e06acf4eb7d164a38d2b
Commit:     a4ca1b01d4376f9b9ca7e06acf4eb7d164a38d2b
Parent:     5428a9463ae1080029a84a1b33e4a8a6915c5f28
Author:     Jeremy Harris <jgh146exb@???>
AuthorDate: Wed Nov 20 14:19:37 2013 +0000
Committer:  Jeremy Harris <jgh146exb@???>
CommitDate: Wed Nov 20 14:36:19 2013 +0000


    Fix testsuite build on Solaris


    As of s11, Solaris & derivatives need libsocket and libnsl.  Ensure they are searched for
    by autoconfig.  This seems to be successfully ignored on Linux.
    Credit to Dave Edmondson (dme@???) for the fix.
---
 test/Makefile.in  | 9 +++++----
 test/configure.ac | 6 ++++++
 2 files changed, 11 insertions(+), 4 deletions(-)


diff --git a/test/Makefile.in b/test/Makefile.in
index fda4d5f..8c2ee96 100644
--- a/test/Makefile.in
+++ b/test/Makefile.in
@@ -10,6 +10,7 @@ CLIENT_SSL=@CLIENT_SSL@
CLIENT_GNUTLS=@CLIENT_GNUTLS@
LOADED=@LOADED@
LOADED_OPT=@LOADED_OPT@
+LIBS=@LIBS@

##############################################################################

@@ -44,17 +45,17 @@ bin/cf:         src/cf.c Makefile
         @echo " "


 bin/client:     src/client.c Makefile
-        $(CC) $(CFLAGS) $(LDFLAGS) -o bin/client src/client.c
+        $(CC) $(CFLAGS) $(LDFLAGS) -o bin/client src/client.c $(LIBS)
         @echo ">>> bin/client command built"
         @echo " "


 bin/client-gnutls: src/client.c Makefile
-        $(CC) $(CFLAGS) -DHAVE_GNUTLS $(LDFLAGS) -o bin/client-gnutls src/client.c -lgnutls -lgcrypt
+        $(CC) $(CFLAGS) -DHAVE_GNUTLS $(LDFLAGS) -o bin/client-gnutls src/client.c -lgnutls -lgcrypt $(LIBS)
         @echo ">>> bin/client-gnutls command built"
         @echo " "


 bin/client-ssl: src/client.c Makefile
-        $(CC) $(CFLAGS) -DHAVE_OPENSSL $(LDFLAGS) -o bin/client-ssl src/client.c -lssl -lcrypto
+        $(CC) $(CFLAGS) -DHAVE_OPENSSL $(LDFLAGS) -o bin/client-ssl src/client.c -lssl -lcrypto $(LIBS)
         @echo ">>> bin/client-ssl command built"
         @echo " "


@@ -89,7 +90,7 @@ bin/mtpscript:  src/mtpscript.c Makefile
         @echo " "


 bin/server:     src/server.c Makefile
-        $(CC) $(CFLAGS) $(LDFLAGS) -o bin/server src/server.c
+        $(CC) $(CFLAGS) $(LDFLAGS) -o bin/server src/server.c $(LIBS)
         @echo ">>> bin/server command built"
         @echo " "


diff --git a/test/configure.ac b/test/configure.ac
index 83f1aa0..a38b5b0 100644
--- a/test/configure.ac
+++ b/test/configure.ac
@@ -48,6 +48,11 @@ case $host_os in
     ;;
 esac


+dnl Solaris requires additional libraries for networking functions.
+
+AC_SEARCH_LIBS([inet_addr], [nsl])
+AC_SEARCH_LIBS([connect], [socket])
+
dnl "Export" these variables

AC_SUBST(BIND_8_COMPAT)
@@ -55,6 +60,7 @@ AC_SUBST(CLIENT_SSL)
AC_SUBST(CLIENT_GNUTLS)
AC_SUBST(LOADED)
AC_SUBST(LOADED_OPT)
+AC_SUBST(LIBS)

dnl This must be last; it determines what files are written