summaryrefslogtreecommitdiff
path: root/source4/lib/replace/inet_ntoa.m4
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-05-18 17:35:16 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-05-18 17:35:16 +0200
commit4911af47f8cd750f9b0f1374b447f171318de964 (patch)
treea28fdd6e18a560b10fa52e40cec9b9f2709b46fe /source4/lib/replace/inet_ntoa.m4
parentd648c5849fba34b5691dcf1867ecd8f80fe35a6d (diff)
parent250478d0445cf56e8b0b4e876977a9ae968ff55b (diff)
downloadsamba-4911af47f8cd750f9b0f1374b447f171318de964.tar.gz
samba-4911af47f8cd750f9b0f1374b447f171318de964.tar.bz2
samba-4911af47f8cd750f9b0f1374b447f171318de964.zip
Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into v4-0-test
(This used to be commit 16dbbf75c7fa0f877659654a20bcab73b707e627)
Diffstat (limited to 'source4/lib/replace/inet_ntoa.m4')
-rw-r--r--source4/lib/replace/inet_ntoa.m419
1 files changed, 0 insertions, 19 deletions
diff --git a/source4/lib/replace/inet_ntoa.m4 b/source4/lib/replace/inet_ntoa.m4
deleted file mode 100644
index 5aaa9350c5..0000000000
--- a/source4/lib/replace/inet_ntoa.m4
+++ /dev/null
@@ -1,19 +0,0 @@
-AC_CHECK_FUNCS(inet_ntoa,[],[LIBREPLACEOBJ="${LIBREPLACEOBJ} inet_ntoa.o"])
-
-AC_CACHE_CHECK([for broken inet_ntoa],libreplace_cv_REPLACE_INET_NTOA,[
-AC_TRY_RUN([
-#include <stdio.h>
-#include <unistd.h>
-#include <sys/types.h>
-#include <netinet/in.h>
-#ifdef HAVE_ARPA_INET_H
-#include <arpa/inet.h>
-#endif
-main() { struct in_addr ip; ip.s_addr = 0x12345678;
-if (strcmp(inet_ntoa(ip),"18.52.86.120") &&
- strcmp(inet_ntoa(ip),"120.86.52.18")) { exit(0); }
-exit(1);}],
- libreplace_cv_REPLACE_INET_NTOA=yes,libreplace_cv_REPLACE_INET_NTOA=no,libreplace_cv_REPLACE_INET_NTOA=cross)])
-if test x"$libreplace_cv_REPLACE_INET_NTOA" = x"yes"; then
- AC_DEFINE(REPLACE_INET_NTOA,1,[Whether inet_ntoa should be replaced])
-fi