diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-05-15 08:08:43 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-05-15 08:08:43 +1000 |
commit | d55e57ca99de4c094113c18bf18179923f641887 (patch) | |
tree | d16297afd1b1c1a58082acbdf3cc41c8da6916ec /source4/lib/replace/inet_ntoa.m4 | |
parent | ff7c537e278194453311ce9a310a8e24cb410d32 (diff) | |
parent | 8113bb07a8eaee2bce1290bff1f06856bc7c76e6 (diff) | |
download | samba-d55e57ca99de4c094113c18bf18179923f641887.tar.gz samba-d55e57ca99de4c094113c18bf18179923f641887.tar.bz2 samba-d55e57ca99de4c094113c18bf18179923f641887.zip |
Merge branch 'v4-0-test' of ssh://git.samba.org/data/git/samba into 4-0-local
(This used to be commit 618400fe7d1f469150b82e0aebc89b2104de116f)
Diffstat (limited to 'source4/lib/replace/inet_ntoa.m4')
-rw-r--r-- | source4/lib/replace/inet_ntoa.m4 | 19 |
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 |