diff options
author | beck <> | 1998-10-12 05:26:13 +0000 |
---|---|---|
committer | beck <> | 1998-10-12 05:26:13 +0000 |
commit | dfc8dc699c7537a774920541d1517de4a3d01502 (patch) | |
tree | cd71ade1608e603cabf38d649d945cfdc8733ff4 /src/lib/libssl/crypto | |
parent | 6d7465ed57dc209c50f2936a017603a6cd23b064 (diff) | |
download | openbsd-dfc8dc699c7537a774920541d1517de4a3d01502.tar.gz openbsd-dfc8dc699c7537a774920541d1517de4a3d01502.tar.bz2 openbsd-dfc8dc699c7537a774920541d1517de4a3d01502.zip |
*UNTESTED* Makefile and configure changes that may work with pmax and arc.
*These need to be tested by someone who has one!!*
Diffstat (limited to 'src/lib/libssl/crypto')
-rw-r--r-- | src/lib/libssl/crypto/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/lib/libssl/crypto/Makefile b/src/lib/libssl/crypto/Makefile index 214c1e2350..fc1a092225 100644 --- a/src/lib/libssl/crypto/Makefile +++ b/src/lib/libssl/crypto/Makefile | |||
@@ -8,12 +8,20 @@ LCRYPTO_SRC= ${.CURDIR}/../${SSLEAYDIST}/crypto | |||
8 | .if ${MACHINE_ARCH} == "i386" | 8 | .if ${MACHINE_ARCH} == "i386" |
9 | CFLAGS+= -DL_ENDIAN -DBN_ASM | 9 | CFLAGS+= -DL_ENDIAN -DBN_ASM |
10 | .else | 10 | .else |
11 | .if ${MACHINE_ARCH} == "arc" | ||
12 | CFLAGS+= -DL_ENDIAN | ||
13 | .else | ||
14 | .if ${MACHINE_ARCH} == "pmax" | ||
15 | CFLAGS+= -DL_ENDIAN | ||
16 | .else | ||
11 | .if ${MACHINE_ARCH} == "alpha" | 17 | .if ${MACHINE_ARCH} == "alpha" |
12 | # no ENDIAN stuff defined for alpha | 18 | # no ENDIAN stuff defined for alpha |
13 | .else | 19 | .else |
14 | CFLAGS+= -DB_ENDIAN | 20 | CFLAGS+= -DB_ENDIAN |
15 | .endif | 21 | .endif |
16 | .endif | 22 | .endif |
23 | .endif | ||
24 | .endif | ||
17 | 25 | ||
18 | CFLAGS+= -DNO_IDEA -DTERMIOS -DANSI_SOURCE | 26 | CFLAGS+= -DNO_IDEA -DTERMIOS -DANSI_SOURCE |
19 | CFLAGS+= -I${.CURDIR}/../${SSLEAYDIST} | 27 | CFLAGS+= -I${.CURDIR}/../${SSLEAYDIST} |