diff options
author | 2001-03-09 23:03:02 +0000 | |
---|---|---|
committer | 2001-03-09 23:03:02 +0000 | |
commit | ed3172a9774428e99d20a625dec05074badc1a3a (patch) | |
tree | ec0c9b5efe40f7f570fa79cd1f9c157601d7d522 | |
parent | Block all signals in lostconn() and sigprocmask() since we are headed (diff) | |
download | wireguard-openbsd-ed3172a9774428e99d20a625dec05074badc1a3a.tar.xz wireguard-openbsd-ed3172a9774428e99d20a625dec05074badc1a3a.zip |
build using OpenBSD-m68k on m68k machines
-rw-r--r-- | lib/libssl/Makefile.bsd-wrapper | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libssl/Makefile.bsd-wrapper b/lib/libssl/Makefile.bsd-wrapper index 9074284d938..3d746a3134b 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.32 2001/02/10 22:12:39 millert Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.33 2001/03/09 23:03:02 deraadt Exp $ # Our lndir is hacked; specify a full path to avoid potential conflicts # with the one installed with X11. @@ -12,6 +12,8 @@ OPENSSLDIR= /etc/ssl .if ${MACHINE_ARCH} == "alpha" SSLCONF= --openssldir="${OPENSSLDIR}" OpenBSD-alpha +.elif ${MACHINE_ARCH} == "m68k" +SSLCONF= --openssldir="${OPENSSLDIR}" OpenBSD-m68k .elif ${MACHINE_ARCH} == "i386" SSLCONF= --openssldir="${OPENSSLDIR}" OpenBSD-x86 .elif ${MACHINE_ARCH} == "mips" |