]> granicus.if.org Git - libevent/commitdiff
Stop checking for inet_aton; we don't use it.
authorNick Mathewson <nickm@torproject.org>
Mon, 24 Feb 2014 15:32:00 +0000 (10:32 -0500)
committerNick Mathewson <nickm@torproject.org>
Mon, 24 Feb 2014 15:33:16 +0000 (10:33 -0500)
We had cmake and autoconf tests for the inet_aton function... but we
never actually use it any more.

(The autoconf tests still use the callability of inet_aton to decide
whether we need to link against -lresolv)

Reported by Harlan Stenn.

CMakeLists.txt
WIN32-Code/nmake/event2/event-config.h
configure.ac
event-config.h.cmake

index 71d96ec32bdde8582d1e1a986452fc5afed1d439..76be7bf63eee13dc8d5d3603d8073df83fa5ead7 100644 (file)
@@ -217,7 +217,6 @@ CHECK_FUNCTION_EXISTS_EX(getnameinfo EVENT__HAVE_GETNAMEINFO)
 CHECK_FUNCTION_EXISTS_EX(gettimeofday EVENT__HAVE_GETTIMEOFDAY)
 CHECK_FUNCTION_EXISTS_EX(getprotobynumber EVENT__HAVE_GETPROTOBYNUMBER)
 CHECK_FUNCTION_EXISTS_EX(getservbyname EVENT__HAVE_GETSERVBYNAME)
-CHECK_FUNCTION_EXISTS_EX(inet_aton EVENT__HAVE_INET_ATON)
 CHECK_FUNCTION_EXISTS_EX(inet_ntop EVENT__HAVE_INET_NTOP)
 CHECK_FUNCTION_EXISTS_EX(inet_pton EVENT__HAVE_INET_PTON)
 CHECK_FUNCTION_EXISTS_EX(kqueue EVENT__HAVE_KQUEUE)
index 43b5c3fb0a722f190224bfbab6fb89b0bdb239fe..da550283adf403eadfbeaf6d8bfe7d7bf3910364 100644 (file)
@@ -70,9 +70,6 @@
 /* Define to 1 if you have the `gettimeofday' function. */
 /* #define EVENT__HAVE_GETTIMEOFDAY 1 */
 
-/* Define to 1 if you have the `inet_aton' function. */
-/* #undef EVENT__HAVE_INET_ATON */
-
 /* Define to 1 if you have the `inet_ntop' function. */
 /* #undef EVENT__HAVE_INET_NTOP */
 
index a0872bc10efab609cc51af7de1741f33c066d8e3..a2a47bfa3d1b2a7f467f0554e035f4c5098d1f33 100644 (file)
@@ -340,7 +340,6 @@ AC_CHECK_FUNCS([ \
   getnameinfo \
   getprotobynumber \
   gettimeofday \
-  inet_aton \
   inet_ntop \
   inet_pton \
   issetugid \
index 577b74481316f8df84eca56c1fe52fc4af9a123a..34ac91c4a32586963a4014418cd15a62bcbeff3e 100644 (file)
 /* Define to 1 if you have the <ifaddrs.h> header file. */
 #cmakedefine EVENT__HAVE_IFADDRS_H 1
 
-/* Define to 1 if you have the `inet_aton' function. */
-#cmakedefine EVENT__HAVE_INET_ATON 1
-
 /* Define to 1 if you have the `inet_ntop' function. */
 #cmakedefine EVENT__HAVE_INET_NTOP 1