diff options
author | hugh <> | 2002-01-21 00:09:01 +0000 |
---|---|---|
committer | hugh <> | 2002-01-21 00:09:01 +0000 |
commit | b563003e8e94328d7af626286358262921cc7175 (patch) | |
tree | bc8e53fe65fb52d28205ab931b92f994790fe999 /src | |
parent | 3433ce569dabec1890d72fab83edb349e492bbd9 (diff) | |
download | openbsd-b563003e8e94328d7af626286358262921cc7175.tar.gz openbsd-b563003e8e94328d7af626286358262921cc7175.tar.bz2 openbsd-b563003e8e94328d7af626286358262921cc7175.zip |
Special case a_strnid.c on vax.
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libssl/Makefile.bsd-wrapper | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/lib/libssl/Makefile.bsd-wrapper b/src/lib/libssl/Makefile.bsd-wrapper index 2025da84ef..01a67a823a 100644 --- a/src/lib/libssl/Makefile.bsd-wrapper +++ b/src/lib/libssl/Makefile.bsd-wrapper | |||
@@ -1,5 +1,5 @@ | |||
1 | # Build wrapper for OpenSSL | 1 | # Build wrapper for OpenSSL |
2 | # $OpenBSD: Makefile.bsd-wrapper,v 1.40 2001/11/06 05:20:35 fgsch Exp $ | 2 | # $OpenBSD: Makefile.bsd-wrapper,v 1.41 2002/01/21 00:09:01 hugh Exp $ |
3 | 3 | ||
4 | # Our lndir is hacked; specify a full path to avoid potential conflicts | 4 | # Our lndir is hacked; specify a full path to avoid potential conflicts |
5 | # with the one installed with X11. | 5 | # with the one installed with X11. |
@@ -676,6 +676,10 @@ maninstall: | |||
676 | SSL_SRC=src | 676 | SSL_SRC=src |
677 | 677 | ||
678 | all: prereq ${MANALL} ${PSALL} | 678 | all: prereq ${MANALL} ${PSALL} |
679 | # egcs bombs optimising this file on vax | ||
680 | .if (${MACHINE_ARCH} == "vax") | ||
681 | cd ${.OBJDIR}/crypto && CFLAGS=-O0 ${MAKE} a_strnid.o a_strnid.po | ||
682 | .endif | ||
679 | @cd ${.OBJDIR} && ${MAKE} | 683 | @cd ${.OBJDIR} && ${MAKE} |
680 | 684 | ||
681 | includes: prereq | 685 | includes: prereq |