summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>2014-04-18 14:41:54 +0000
committerderaadt <deraadt@openbsd.org>2014-04-18 14:41:54 +0000
commitc7d7231e578aa2f1c7809c639369a571b4cd0557 (patch)
tree3720032a4f87692d9d7090e99aecd1ad00135cb3
parentIt's been a quarter century: we can assume volatile is present with that name. (diff)
downloadwireguard-openbsd-c7d7231e578aa2f1c7809c639369a571b4cd0557.tar.xz
wireguard-openbsd-c7d7231e578aa2f1c7809c639369a571b4cd0557.zip
since e_os.h is dead, and e_os2.h is installed, we can fetch from there.
This means we don't need the reach-around anymore.
-rw-r--r--usr.sbin/openssl/Makefile10
1 files changed, 2 insertions, 8 deletions
diff --git a/usr.sbin/openssl/Makefile b/usr.sbin/openssl/Makefile
index 2a2df8f2e6d..da72cbeeabc 100644
--- a/usr.sbin/openssl/Makefile
+++ b/usr.sbin/openssl/Makefile
@@ -1,18 +1,12 @@
-# $OpenBSD: Makefile,v 1.25 2014/04/17 22:44:34 matthew Exp $
+# $OpenBSD: Makefile,v 1.26 2014/04/18 14:41:54 deraadt Exp $
PROG= openssl
LDADD= -lssl -lcrypto
MAN1= openssl.1
-SSLEAYDIST= lib/libssl/src
-
-SSLEAY_SRC= ${.CURDIR}/../../${SSLEAYDIST}/apps
-SSLEAY_SRC_TOP= ${.CURDIR}/../../${SSLEAYDIST}
-
CFLAGS+= -Wall
CFLAGS+= -DTERMIOS -DANSI_SOURCE -DOPENSSL_NO_RC5
CFLAGS+= -DOPENSSL_NO_SSL2
-CFLAGS+= -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 \
@@ -23,6 +17,6 @@ SRCS= verify.c asn1pars.c req.c dgst.c dh.c enc.c passwd.c gendh.c errstr.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}
+.PATH: ${.CURDIR}/../../lib/libssl/src/apps
.include <bsd.prog.mk>