summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-02-19 17:25:42 +0100
committerMichael Adam <obnox@samba.org>2008-02-19 17:25:42 +0100
commit5233e43ec7e96afb905f026309b0894178c96499 (patch)
treeaf32f25469e6e7448db3a6570eaf73f785615852 /source4
parentc05b9ef58a79b09a1f9b6332bf2989af6db8ee26 (diff)
downloadsamba-5233e43ec7e96afb905f026309b0894178c96499.tar.gz
samba-5233e43ec7e96afb905f026309b0894178c96499.tar.bz2
samba-5233e43ec7e96afb905f026309b0894178c96499.zip
Remove relict SAMBA_CONFIGURE_CPPFLAGS from lib/replace.
Michael (This used to be commit d10cbb533c18a6d74160477d34a81bbd4cd6c7c8)
Diffstat (limited to 'source4')
-rw-r--r--source4/lib/replace/getifaddrs.m43
1 files changed, 0 insertions, 3 deletions
diff --git a/source4/lib/replace/getifaddrs.m4 b/source4/lib/replace/getifaddrs.m4
index 297a82d0c3..4259d1a7a3 100644
--- a/source4/lib/replace/getifaddrs.m4
+++ b/source4/lib/replace/getifaddrs.m4
@@ -43,8 +43,6 @@ iface=no;
# look for a method of finding the list of network interfaces
iface=no;
AC_CACHE_CHECK([for iface getifaddrs],samba_cv_HAVE_IFACE_GETIFADDRS,[
-SAVE_CPPFLAGS="$CPPFLAGS"
-CPPFLAGS="$CPPFLAGS ${SAMBA_CONFIGURE_CPPFLAGS}"
AC_TRY_RUN([
#define NO_CONFIG_H 1
#define HAVE_IFACE_GETIFADDRS 1
@@ -52,7 +50,6 @@ AC_TRY_RUN([
#include "$libreplacedir/replace.c"
#include "$libreplacedir/getifaddrs.c"],
samba_cv_HAVE_IFACE_GETIFADDRS=yes,samba_cv_HAVE_IFACE_GETIFADDRS=no,samba_cv_HAVE_IFACE_GETIFADDRS=cross)])
-CPPFLAGS="$SAVE_CPPFLAGS"
if test x"$samba_cv_HAVE_IFACE_GETIFADDRS" = x"yes"; then
iface=yes;AC_DEFINE(HAVE_IFACE_GETIFADDRS,1,[Whether iface getifaddrs is available])
else