diff options
author | kris <kris@FreeBSD.org> | 2000-09-22 01:59:06 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2000-09-22 01:59:06 +0000 |
commit | cc2138f8872f35766e9eed08df7f940799f6989d (patch) | |
tree | 135ecc5c6f2aa6e70fad57b88e4dc5800c435b99 /ftp/curl | |
parent | 86525b91dae5387ee33a49235af5a72d7c327c2a (diff) | |
download | FreeBSD-ports-cc2138f8872f35766e9eed08df7f940799f6989d.zip FreeBSD-ports-cc2138f8872f35766e9eed08df7f940799f6989d.tar.gz |
Update all ports using OpenSSL and RSA to work without rsaref since
it is no longer required. Apologies to the various maintainers whom I
did not yet hear back from, but the ports freeze is coming up in a few
hours and I will be verifying all of these ports on a 4.1 machine
myself to catch any problems.
Diffstat (limited to 'ftp/curl')
-rw-r--r-- | ftp/curl/Makefile | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/ftp/curl/Makefile b/ftp/curl/Makefile index 277e77b..473ed01e 100644 --- a/ftp/curl/Makefile +++ b/ftp/curl/Makefile @@ -26,21 +26,14 @@ SHLIB_VER= 0 MAKE_ENV= SHLIB_VER="${SHLIB_VER}" PLIST_SUB= SHLIB_VER="${SHLIB_VER}" -.if defined(WITH_SSL) -USE_OPENSSL= RSA -.endif - .include <bsd.port.pre.mk> -.if defined(USE_OPENSSL) +.if defined(WITH_SSL) +USE_OPENSSL= YES CONFIGURE_ENV+= CPPFLAGS='-I${OPENSSLINC} -I${OPENSSLINC}/openssl' \ LDFLAGS='-L${OPENSSLLIB}' .endif -.if defined(OPENSSL_RSAREF) -CONFIGURE_ENV+= LIBS="-L${OPENSSLLIB} -lcrypto -lRSAglue -L${LOCALBASE}/lib -lrsaref" -.endif - GNU_CONFIGURE= yes USE_AUTOMAKE= yes MAKEFILES= Makefile src/Makefile |