diff options
author | Hugh Graham <hugh@cvs.openbsd.org> | 2000-10-13 21:31:31 +0000 |
---|---|---|
committer | Hugh Graham <hugh@cvs.openbsd.org> | 2000-10-13 21:31:31 +0000 |
commit | ea55ada60b971559c0cd36421576ee1f0502d9a3 (patch) | |
tree | 37004b60a529396a623a94bc73e495f137c487c0 /lib/libssl/Makefile.bsd-wrapper | |
parent | c0ff197315f7cad34f1ceca070860c72fbb99258 (diff) |
vax support; checked by beck.
Diffstat (limited to 'lib/libssl/Makefile.bsd-wrapper')
-rw-r--r-- | lib/libssl/Makefile.bsd-wrapper | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libssl/Makefile.bsd-wrapper b/lib/libssl/Makefile.bsd-wrapper index f59a2ea5516..c208db032c5 100644 --- a/lib/libssl/Makefile.bsd-wrapper +++ b/lib/libssl/Makefile.bsd-wrapper @@ -1,5 +1,5 @@ # Build wrapper for OpenSSL -# $OpenBSD: Makefile.bsd-wrapper,v 1.23 2000/09/05 08:18:21 deraadt Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.24 2000/10/13 21:31:28 hugh Exp $ # Our lndir is hacked; specify a full path to avoid potential conflicts # with the one installed with X11. @@ -17,6 +17,9 @@ SSLCONF= --openssldir=/etc/ssl OpenBSD-mips .if ${MACHINE_ARCH} == "alpha" SSLCONF= --openssldir=/etc/ssl OpenBSD-alpha .else +.if ${MACHINE_ARCH} == "vax" +SSLCONF= --openssldir=/etc/ssl OpenBSD-vax +.else .if ${MACHINE_ARCH} == "sparc" SSLCONF= --openssldir=/etc/ssl OpenBSD .else @@ -30,6 +33,7 @@ SSLCONF= --openssldir=/etc/ssl OpenBSD .endif .endif .endif +.endif MUNGEDFILES = ${.OBJDIR}/${SSL_SRC}/crypto/opensslconf.h ${.OBJDIR}/${SSL_SRC}/crypto/objects/obj_dat.h ${.OBJDIR}/${SSL_SRC}/Makefile.ssl ${.OBJDIR}/${SSL_SRC}/Makefile ${.OBJDIR}/${SSL_SRC}/apps/der_chop ${.OBJDIR}/${SSL_SRC}/tools/c_rehash |