aboutsummaryrefslogtreecommitdiff
path: root/crypto
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2018-03-14 07:29:04 -0500
committerBrent Cook <busterb@gmail.com>2018-03-14 07:29:04 -0500
commit3fb9e63b907186c70fb79e818d899ccb67b4b421 (patch)
tree6d1bd111880dff4838796915a68076339c37cbc3 /crypto
parentb7397ab184d303b7cd6a41eaf121e47834c5b707 (diff)
downloadportable-3fb9e63b907186c70fb79e818d899ccb67b4b421.tar.gz
portable-3fb9e63b907186c70fb79e818d899ccb67b4b421.tar.bz2
portable-3fb9e63b907186c70fb79e818d899ccb67b4b421.zip
bump base requirement to Windows Vista, use builtin inet_ntop/pton
Diffstat (limited to 'crypto')
-rw-r--r--crypto/CMakeLists.txt5
-rw-r--r--crypto/Makefile.am7
2 files changed, 0 insertions, 12 deletions
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)
687 set(CRYPTO_SRC ${CRYPTO_SRC} compat/getpagesize.c) 687 set(CRYPTO_SRC ${CRYPTO_SRC} compat/getpagesize.c)
688endif() 688endif()
689 689
690if(NOT HAVE_INET_PTON)
691 set(CRYPTO_SRC ${CRYPTO_SRC} compat/inet_pton.c)
692 set(EXTRA_EXPORT ${EXTRA_EXPORT} inet_pton)
693endif()
694
695if(NOT HAVE_REALLOCARRAY) 690if(NOT HAVE_REALLOCARRAY)
696 set(CRYPTO_SRC ${CRYPTO_SRC} compat/reallocarray.c) 691 set(CRYPTO_SRC ${CRYPTO_SRC} compat/reallocarray.c)
697 set(EXTRA_EXPORT ${EXTRA_EXPORT} reallocarray) 692 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
40if !HAVE_FREEZERO 40if !HAVE_FREEZERO
41 -echo freezero >> crypto_portable.sym 41 -echo freezero >> crypto_portable.sym
42endif 42endif
43if !HAVE_INET_PTON
44 -echo inet_pton >> crypto_portable.sym
45endif
46if !HAVE_REALLOCARRAY 43if !HAVE_REALLOCARRAY
47 -echo reallocarray >> crypto_portable.sym 44 -echo reallocarray >> crypto_portable.sym
48endif 45endif
@@ -166,10 +163,6 @@ if !HAVE_GETPAGESIZE
166libcompat_la_SOURCES += compat/getpagesize.c 163libcompat_la_SOURCES += compat/getpagesize.c
167endif 164endif
168 165
169if !HAVE_INET_PTON
170libcompat_la_SOURCES += compat/inet_pton.c
171endif
172
173if !HAVE_TIMEGM 166if !HAVE_TIMEGM
174libcompat_la_SOURCES += compat/timegm.c 167libcompat_la_SOURCES += compat/timegm.c
175endif 168endif