summaryrefslogtreecommitdiff
path: root/source4
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2008-05-08 10:39:41 +0200
committerStefan Metzmacher <metze@samba.org>2008-05-13 09:07:13 +0200
commitdd01174d092eec9bb3bb6b680786f8b9f3b4668f (patch)
treed6f7b7188baac9f47a412115525e717a5756ee65 /source4
parent6353e83dc27132a47966302a68b8e4934bce442c (diff)
downloadsamba-dd01174d092eec9bb3bb6b680786f8b9f3b4668f.tar.gz
samba-dd01174d092eec9bb3bb6b680786f8b9f3b4668f.tar.bz2
samba-dd01174d092eec9bb3bb6b680786f8b9f3b4668f.zip
libreplace: make sure system/network.h is only used when AC_LIBREPLACE_NETWORK_CHECKS was used
metze (This used to be commit 3fddd36e119f73a5021370450f9687ef9d252bab)
Diffstat (limited to 'source4')
-rw-r--r--source4/lib/replace/libreplace_network.m41
-rw-r--r--source4/lib/replace/system/network.h4
2 files changed, 5 insertions, 0 deletions
diff --git a/source4/lib/replace/libreplace_network.m4 b/source4/lib/replace/libreplace_network.m4
index f1657d9f79..56c603a155 100644
--- a/source4/lib/replace/libreplace_network.m4
+++ b/source4/lib/replace/libreplace_network.m4
@@ -2,6 +2,7 @@ AC_DEFUN_ONCE(AC_LIBREPLACE_NETWORK_CHECKS,
[
echo "LIBREPLACE_NETWORK_CHECKS: START"
+AC_DEFINE(LIBREPLACE_NETWORK_CHECKS, 1, [LIBREPLACE_NETWORK_CHECKS were used])
LIBREPLACE_NETWORK_OBJS=""
LIBREPLACE_NETWORK_LIBS=""
diff --git a/source4/lib/replace/system/network.h b/source4/lib/replace/system/network.h
index a5fb813aa1..077892a54e 100644
--- a/source4/lib/replace/system/network.h
+++ b/source4/lib/replace/system/network.h
@@ -27,6 +27,10 @@
*/
+#ifndef LIBREPLACE_NETWORK_CHECKS
+#error "AC_LIBREPLACE_NETWORK_CHECKS missing in configure"
+#endif
+
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
#endif