X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=test%2Fconfigure.ac;h=a38b5b0ae34b6703c8df623a8e115f6948eda561;hb=a0839bccad7eb451b0a2322b64488d5e2c37f269;hp=8b318034d090eb3dda842bb269e5a8e698a17ebc;hpb=151b83f867487080e8f0e5cd6179e857dc6b3ccb;p=user%2Fhenk%2Fcode%2Fexim.git diff --git a/test/configure.ac b/test/configure.ac index 8b318034d..a38b5b0ae 100644 --- a/test/configure.ac +++ b/test/configure.ac @@ -1,5 +1,3 @@ -dnl $Cambridge: exim/test/configure.ac,v 1.1 2006/02/06 16:07:10 ph10 Exp $ - dnl Process this file with autoconf to produce a configure script. dnl This is required at the start; the name is the name of a file @@ -33,7 +31,7 @@ host_os=`uname -s` case $CC-$host_os in gcc-*linux* | gcc-*Linux* | gcc-*LINUX* | gcc-FreeBSD) LOADED=bin/loaded - LOADED_OPT=-shared + LOADED_OPT="-shared -fPIC" echo "Using gcc on $host_os: will compile dynamically loaded module" ;; *) @@ -42,12 +40,27 @@ case $CC-$host_os in ;; esac +dnl At least one operating system needs BIND_8_COMPAT to be defined. + +case $host_os in + Darwin) + BIND_8_COMPAT=-DBIND_8_COMPAT + ;; +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) 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