diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2010-10-01 23:04:34 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2010-10-01 23:04:34 +0000 |
commit | 7e189a36fef87ecfd338af01d14747a9471efd25 (patch) | |
tree | dbacdf90de03a39128ec545de585f14c243610f2 /usr.sbin | |
parent | c4260e12c02a0898c794ac5e1ab67de9cf97777d (diff) |
update to openssl-1.0.0a
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/openssl/Makefile | 28 |
1 files changed, 8 insertions, 20 deletions
diff --git a/usr.sbin/openssl/Makefile b/usr.sbin/openssl/Makefile index 9ebadfaa10b..20307fcbfcf 100644 --- a/usr.sbin/openssl/Makefile +++ b/usr.sbin/openssl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.18 2008/09/06 12:21:52 djm Exp $ +# $OpenBSD: Makefile,v 1.19 2010/10/01 23:04:33 djm Exp $ PROG= openssl LDADD= -lssl -lcrypto @@ -9,30 +9,18 @@ SSLEAYDIST= lib/libssl/src SSLEAY_SRC= ${.CURDIR}/../../${SSLEAYDIST}/apps SSLEAY_SRC_TOP= ${.CURDIR}/../../${SSLEAYDIST} -.if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "vax" || \ - ${MACHINE_ARCH} == "amd64" - -CFLAGS+= -DL_ENDIAN -.else -.if ${MACHINE_ARCH} == "alpha" -# no ENDIAN stuff defined for alpha -.else -CFLAGS+= -DB_ENDIAN -.endif -.endif - CFLAGS+= -DMONOLITH -DOPENSSL_NO_IDEA -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5 CFLAGS+= -DOPENSSL_NO_MDC2 CFLAGS+= -I${SSLEAY_SRC_TOP} -SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.c\ +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 \ - rsa.c dsa.c dsaparam.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 engine.c ocsp.c prime.c \ - cms.c ec.c ecparam.c + rsa.c rsautl.c dsa.c dsaparam.c ec.c ecparam.c \ + x509.c genrsa.c gendsa.c genpkey.c s_server.c s_client.c speed.c \ + s_time.c apps.c s_socket.c app_rand.c version.c sess_id.c \ + ciphers.c nseq.c pkcs12.c pkcs8.c pkey.c pkeyparam.c pkeyutl.c \ + spkac.c smime.c cms.c rand.c engine.c ocsp.c prime.c ts.c \ + openssl.c s_cb.c dhparam.c .PATH: ${SSLEAY_SRC} |