aboutsummaryrefslogtreecommitdiff
path: root/crypto/Makefile.am
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2019-01-31 09:45:56 -0600
committerBrent Cook <busterb@gmail.com>2019-01-31 13:56:56 -0600
commita6d7ea956290470254e817adb2f6a3fac9397a17 (patch)
treee9880ccf45612c854fd97287969b879c9a47e29d /crypto/Makefile.am
parent495a1b631687f6cc1a1e9fe217aa17184a1b4aff (diff)
downloadportable-a6d7ea956290470254e817adb2f6a3fac9397a17.tar.gz
portable-a6d7ea956290470254e817adb2f6a3fac9397a17.tar.bz2
portable-a6d7ea956290470254e817adb2f6a3fac9397a17.zip
update autoconf for latest compat functions
Diffstat (limited to 'crypto/Makefile.am')
-rw-r--r--crypto/Makefile.am14
1 files changed, 14 insertions, 0 deletions
diff --git a/crypto/Makefile.am b/crypto/Makefile.am
index d2c7431..4bf6b46 100644
--- a/crypto/Makefile.am
+++ b/crypto/Makefile.am
@@ -87,6 +87,7 @@ if HOST_WIN
87 -echo posix_write >> crypto_portable.sym 87 -echo posix_write >> crypto_portable.sym
88 -echo posix_getsockopt >> crypto_portable.sym 88 -echo posix_getsockopt >> crypto_portable.sym
89 -echo posix_setsockopt >> crypto_portable.sym 89 -echo posix_setsockopt >> crypto_portable.sym
90 -echo getuid >> crypto_portable.sym
90 -grep -v BIO_s_log crypto_portable.sym > crypto_portable.sym.tmp 91 -grep -v BIO_s_log crypto_portable.sym > crypto_portable.sym.tmp
91 -mv crypto_portable.sym.tmp crypto_portable.sym 92 -mv crypto_portable.sym.tmp crypto_portable.sym
92endif 93endif
@@ -162,6 +163,15 @@ if !HAVE_GETPAGESIZE
162libcompat_la_SOURCES += compat/getpagesize.c 163libcompat_la_SOURCES += compat/getpagesize.c
163endif 164endif
164 165
166if !HAVE_GETPROGNAME
167if HOST_LINUX
168libcompat_la_SOURCES += compat/getprogname_linux.c
169endif
170if HOST_WIN
171libcompat_la_SOURCES += compat/getprogname_windows.c
172endif
173endif
174
165if !HAVE_TIMEGM 175if !HAVE_TIMEGM
166libcompat_la_SOURCES += compat/timegm.c 176libcompat_la_SOURCES += compat/timegm.c
167endif 177endif
@@ -174,6 +184,10 @@ if !HAVE_RECALLOCARRAY
174libcompat_la_SOURCES += compat/recallocarray.c 184libcompat_la_SOURCES += compat/recallocarray.c
175endif 185endif
176 186
187if !HAVE_SYSLOG_R
188libcompat_la_SOURCES += compat/syslog_r.c
189endif
190
177if !HAVE_TIMINGSAFE_MEMCMP 191if !HAVE_TIMINGSAFE_MEMCMP
178libcompat_la_SOURCES += compat/timingsafe_memcmp.c 192libcompat_la_SOURCES += compat/timingsafe_memcmp.c
179endif 193endif