diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-02-10 22:18:50 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2002-02-10 22:18:50 +0000 |
commit | 805d8aebc417e9c1062ffdb572d8f9afc3b70963 (patch) | |
tree | 0a7c85e2d05a01eacd0dc1f3e2a8fb3655b6159b /lib/libssl | |
parent | 05f83968d09b1d12f592ddc4b0256aec07d5e311 (diff) |
but... on vax... des_enc.c requires -O1
Diffstat (limited to 'lib/libssl')
-rw-r--r-- | lib/libssl/Makefile.bsd-wrapper | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libssl/Makefile.bsd-wrapper b/lib/libssl/Makefile.bsd-wrapper index 01a67a823aa..4a23a3a4b74 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.41 2002/01/21 00:09:01 hugh Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.42 2002/02/10 22:18:49 deraadt Exp $ # Our lndir is hacked; specify a full path to avoid potential conflicts # with the one installed with X11. @@ -679,6 +679,7 @@ all: prereq ${MANALL} ${PSALL} # egcs bombs optimising this file on vax .if (${MACHINE_ARCH} == "vax") cd ${.OBJDIR}/crypto && CFLAGS=-O0 ${MAKE} a_strnid.o a_strnid.po + cd ${.OBJDIR}/crypto && CFLAGS=-O1 ${MAKE} des_enc.o des_enc.po .endif @cd ${.OBJDIR} && ${MAKE} |