From 3fb9e63b907186c70fb79e818d899ccb67b4b421 Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Wed, 14 Mar 2018 07:29:04 -0500 Subject: bump base requirement to Windows Vista, use builtin inet_ntop/pton --- crypto/CMakeLists.txt | 5 ----- crypto/Makefile.am | 7 ------- 2 files changed, 12 deletions(-) (limited to 'crypto') diff --git a/crypto/CMakeLists.txt b/crypto/CMakeLists.txt index c2ec985..0615110 100644 --- a/crypto/CMakeLists.txt +++ b/crypto/CMakeLists.txt @@ -687,11 +687,6 @@ if(NOT HAVE_GETPAGESIZE) set(CRYPTO_SRC ${CRYPTO_SRC} compat/getpagesize.c) endif() -if(NOT HAVE_INET_PTON) - set(CRYPTO_SRC ${CRYPTO_SRC} compat/inet_pton.c) - set(EXTRA_EXPORT ${EXTRA_EXPORT} inet_pton) -endif() - if(NOT HAVE_REALLOCARRAY) set(CRYPTO_SRC ${CRYPTO_SRC} compat/reallocarray.c) set(EXTRA_EXPORT ${EXTRA_EXPORT} reallocarray) diff --git a/crypto/Makefile.am b/crypto/Makefile.am index 9520a41..8bfb4a9 100644 --- a/crypto/Makefile.am +++ b/crypto/Makefile.am @@ -40,9 +40,6 @@ endif if !HAVE_FREEZERO -echo freezero >> crypto_portable.sym endif -if !HAVE_INET_PTON - -echo inet_pton >> crypto_portable.sym -endif if !HAVE_REALLOCARRAY -echo reallocarray >> crypto_portable.sym endif @@ -166,10 +163,6 @@ if !HAVE_GETPAGESIZE libcompat_la_SOURCES += compat/getpagesize.c endif -if !HAVE_INET_PTON -libcompat_la_SOURCES += compat/inet_pton.c -endif - if !HAVE_TIMEGM libcompat_la_SOURCES += compat/timegm.c endif -- cgit v1.2.3-55-g6feb