diff options
author | 2002-05-15 02:29:59 +0000 | |
---|---|---|
committer | 2002-05-15 02:29:59 +0000 | |
commit | c89d1b746e93040cb4a5395782cde533543a5818 (patch) | |
tree | 891dcbbd03c226cd5e92cd0ab138c4f8f613069a | |
parent | OpenSSL 0.9.7 stable 2002 05 08 merge (diff) | |
download | wireguard-openbsd-c89d1b746e93040cb4a5395782cde533543a5818.tar.xz wireguard-openbsd-c89d1b746e93040cb4a5395782cde533543a5818.zip |
Changes for OpenSSL 0.9.7
-rw-r--r-- | usr.sbin/openssl/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/openssl/Makefile b/usr.sbin/openssl/Makefile index 97131b640d6..8c58dde7abd 100644 --- a/usr.sbin/openssl/Makefile +++ b/usr.sbin/openssl/Makefile @@ -5,13 +5,13 @@ BINOWN= root BINGRP= bin BINMODE= 555 BINDIR= /usr/sbin -DPADD= ${LIBSSL} ${LIBCRYPTO} LDADD= -lssl -lcrypto NOMAN= not yet kiddies SSLEAYDIST= lib/libssl/src SSLEAY_SRC= ${.CURDIR}/../../${SSLEAYDIST}/apps +SSLEAY_SRC_TOP= ${.CURDIR}/../../${SSLEAYDIST} .if ${MACHINE_ARCH} == "i386" CFLAGS+= -g -DL_ENDIAN -DBN_ASM @@ -31,8 +31,8 @@ CFLAGS+= -DB_ENDIAN .endif .endif -CFLAGS+= -DMONOLITH -DNO_IDEA -DTERMIOS -DANSI_SOURCE -DNO_RC5 -CFLAGS+= -I/usr/include/ssl +CFLAGS+= -DMONOLITH -DOPENSSL_NO_IDEA -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5 +CFLAGS+= -I/usr/include/ssl -I${SSLEAY_SRC_TOP} SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c\ pkcs7.c crl2p7.c crl.c ca.c \ @@ -40,7 +40,7 @@ SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c\ x509.c genrsa.c gendsa.c s_server.c s_client.c speed.c \ s_time.c apps.c s_cb.c s_socket.c version.c sess_id.c \ app_rand.c ciphers.c nseq.c pkcs12.c pkcs8.c spkac.c smime.c \ - dhparam.c openssl.c rand.c rsautl.c + dhparam.c openssl.c rand.c rsautl.c engine.c ocsp.c .PATH: ${SSLEAY_SRC} |