diff options
author | Hugh Graham <hugh@cvs.openbsd.org> | 2002-01-21 00:09:02 +0000 |
---|---|---|
committer | Hugh Graham <hugh@cvs.openbsd.org> | 2002-01-21 00:09:02 +0000 |
commit | e9d1b2095fbf59b3180899ccc5f9b92439edfb9b (patch) | |
tree | 1c09d3e93395ff9f32711475efcd7eec49fc670c | |
parent | 69749352975bddf2aae00148c886a41eb9a31ebe (diff) |
Special case a_strnid.c on vax.
-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 2025da84ef4..01a67a823aa 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.40 2001/11/06 05:20:35 fgsch Exp $ +# $OpenBSD: Makefile.bsd-wrapper,v 1.41 2002/01/21 00:09:01 hugh Exp $ # Our lndir is hacked; specify a full path to avoid potential conflicts # with the one installed with X11. @@ -676,6 +676,10 @@ maninstall: SSL_SRC=src 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 +.endif @cd ${.OBJDIR} && ${MAKE} includes: prereq |