diff options
author | Stefan Metzmacher <metze@samba.org> | 2008-05-16 12:46:10 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2008-05-16 22:56:15 +0200 |
commit | 097b5ae7633d2f89abe9f89202a8af1438b590cd (patch) | |
tree | be1c90adff76fa4ac13e139320690e7844d1bf81 /source4 | |
parent | c7c9aa7e7a2d941486fb21fd15e57653cc8b14e0 (diff) | |
download | samba-097b5ae7633d2f89abe9f89202a8af1438b590cd.tar.gz samba-097b5ae7633d2f89abe9f89202a8af1438b590cd.tar.bz2 samba-097b5ae7633d2f89abe9f89202a8af1438b590cd.zip |
lib/replace: move sys/sockio.h and sys/un.h checks into AC_LIBREPLACE_NETWORK_CHECKS
metze
(This used to be commit 7f26a5425e706a97cc07c5139b3fea4fde9e4020)
Diffstat (limited to 'source4')
-rw-r--r-- | source4/lib/replace/libreplace.m4 | 1 | ||||
-rw-r--r-- | source4/lib/replace/libreplace_network.m4 | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/replace/libreplace.m4 b/source4/lib/replace/libreplace.m4 index 2b33d97989..6a85ff5a82 100644 --- a/source4/lib/replace/libreplace.m4 +++ b/source4/lib/replace/libreplace.m4 @@ -96,7 +96,6 @@ fi AC_CHECK_HEADERS(sys/syslog.h syslog.h) AC_CHECK_HEADERS(sys/time.h time.h) AC_CHECK_HEADERS(stdarg.h vararg.h) -AC_CHECK_HEADERS(sys/sockio.h sys/un.h) AC_CHECK_HEADERS(sys/mount.h mntent.h) AC_CHECK_HEADERS(stropts.h) diff --git a/source4/lib/replace/libreplace_network.m4 b/source4/lib/replace/libreplace_network.m4 index d29c13196d..f2d177b165 100644 --- a/source4/lib/replace/libreplace_network.m4 +++ b/source4/lib/replace/libreplace_network.m4 @@ -8,6 +8,7 @@ LIBREPLACE_NETWORK_LIBS="" AC_CHECK_HEADERS(sys/socket.h netinet/in.h netdb.h arpa/inet.h) AC_CHECK_HEADERS(netinet/ip.h netinet/tcp.h netinet/in_systm.h netinet/in_ip.h) +AC_CHECK_HEADERS(sys/sockio.h sys/un.h) dnl we need to check that net/if.h really can be used, to cope with hpux dnl where including it always fails |