aboutsummaryrefslogtreecommitdiff
path: root/apps/openssl/Makefile.am
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2018-03-22 20:50:24 -0500
committerBrent Cook <busterb@gmail.com>2018-03-22 21:04:43 -0500
commit987aa6a084312be8501bdda42b0e5aab3b84d52a (patch)
tree9c3cf68f0ca3cb172d5d2238563c979b29543d08 /apps/openssl/Makefile.am
parent78600e9bec2b52f0f8a0f7ce376f3783999bb824 (diff)
downloadportable-987aa6a084312be8501bdda42b0e5aab3b84d52a.tar.gz
portable-987aa6a084312be8501bdda42b0e5aab3b84d52a.tar.bz2
portable-987aa6a084312be8501bdda42b0e5aab3b84d52a.zip
add clock_gettime for macos 10.11 and earlier
Diffstat (limited to 'apps/openssl/Makefile.am')
-rw-r--r--apps/openssl/Makefile.am6
1 files changed, 6 insertions, 0 deletions
diff --git a/apps/openssl/Makefile.am b/apps/openssl/Makefile.am
index 9b9eb10..f100adb 100644
--- a/apps/openssl/Makefile.am
+++ b/apps/openssl/Makefile.am
@@ -74,6 +74,12 @@ openssl_SOURCES += compat/poll_win.c
74endif 74endif
75endif 75endif
76 76
77if !HAVE_CLOCK_GETTIME
78if HOST_DARWIN
79openssl_SOURCES += compat/clock_gettime_osx.c
80endif
81endif
82
77if !HAVE_STRTONUM 83if !HAVE_STRTONUM
78openssl_SOURCES += compat/strtonum.c 84openssl_SOURCES += compat/strtonum.c
79endif 85endif