From 811df5594f769de0f202a2751d3beb9b3dd41edb Mon Sep 17 00:00:00 2001 From: kris Date: Sat, 27 Jan 2007 00:29:47 +0000 Subject: [PATCH] Remove inet_aton() checks from configure and HAVE_INET_ATON from config.h.in --- config.h.in | 2 -- configure | 4 +--- configure.ac | 3 +-- 3 files changed, 2 insertions(+), 7 deletions(-) diff --git a/config.h.in b/config.h.in index 369a2caee..a02b6bc5d 100644 --- a/config.h.in +++ b/config.h.in @@ -151,8 +151,6 @@ #undef BSD_NETWORKING -#undef HAVE_INET_ATON - #undef HAVE_STRCASESTR #undef IN_ADDR_DEEPSTRUCT diff --git a/configure b/configure index a03e6d576..e30246c65 100755 --- a/configure +++ b/configure @@ -8132,9 +8132,7 @@ fi - -for ac_func in bzero memcpy nanosleep strerror \ -strcasestr inet_aton getopt_long_only +for ac_func in bzero memcpy nanosleep strerror strcasestr getopt_long_only do as_ac_var=`echo "ac_cv_func_$ac_func" | $as_tr_sh` { echo "$as_me:$LINENO: checking for $ac_func" >&5 diff --git a/configure.ac b/configure.ac index 2dd2a502f..4190298e1 100644 --- a/configure.ac +++ b/configure.ac @@ -736,8 +736,7 @@ fi dnl Checks for library functions. dnl AC_TYPE_SIGNAL -AC_CHECK_FUNCS(bzero memcpy nanosleep strerror \ -strcasestr inet_aton getopt_long_only) +AC_CHECK_FUNCS(bzero memcpy nanosleep strerror strcasestr getopt_long_only) AC_LANG_PUSH(C++) AC_MSG_CHECKING([for usleep])