X-Git-Url: https://git.exim.org/exim.git/blobdiff_plain/151b83f867487080e8f0e5cd6179e857dc6b3ccb..97fd1e4825b09dc6278d2c37b5f2e043519a5f25:/test/configure.ac diff --git a/test/configure.ac b/test/configure.ac index 8b318034d..6467a0da9 100644 --- a/test/configure.ac +++ b/test/configure.ac @@ -1,4 +1,4 @@ -dnl $Cambridge: exim/test/configure.ac,v 1.1 2006/02/06 16:07:10 ph10 Exp $ +dnl $Cambridge: exim/test/configure.ac,v 1.2 2007/01/23 11:01:10 ph10 Exp $ dnl Process this file with autoconf to produce a configure script. @@ -33,7 +33,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,8 +42,17 @@ 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 "Export" these variables +AC_SUBST(BIND_8_COMPAT) AC_SUBST(CLIENT_SSL) AC_SUBST(CLIENT_GNUTLS) AC_SUBST(LOADED)