From ed7e7d8d50d48bec3ed7ff95657f167142bf7610 Mon Sep 17 00:00:00 2001 From: Dirk Date: Fri, 22 Feb 2019 10:07:46 +0100 Subject: [PATCH] Add line for Darwin not sure whether -static just works. TBD --- utils/make-openssl.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/utils/make-openssl.sh b/utils/make-openssl.sh index f5cd9fa..7444018 100755 --- a/utils/make-openssl.sh +++ b/utils/make-openssl.sh @@ -120,11 +120,14 @@ case $(uname) in ;; Darwin) case $(uname -m) in + # No Keberos (yet?) for Darwin x86_64) clean - echo "FIXME" + ./config $STDOPTIONS enable-ec_nistp_64_gcc_128 -static + [ $? -ne 0 ] && error "configuring" ;; i386) clean - echo "FIXME" + ./config $STDOPTIONS no-ec_nistp_64_gcc_128 -static + [ $? -ne 0 ] && error "configuring" ;; esac ;; @@ -143,5 +146,5 @@ echo # vim:ts=5:sw=5 -# $Id: make-openssl.sh,v 1.19 2017/05/12 15:56:24 dirkw Exp $ +# $Id: make-openssl.sh,v 1.20 2019/02/22 09:07:07 dirkw Exp $