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/ssl | |
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/ssl')
-rw-r--r-- | src/lib/libssl/ssl/Makefile | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/lib/libssl/ssl/Makefile b/src/lib/libssl/ssl/Makefile index facbfa9ca7..6fffdd9ef2 100644 --- a/src/lib/libssl/ssl/Makefile +++ b/src/lib/libssl/ssl/Makefile | |||
@@ -9,12 +9,21 @@ LCRYPTO_SRC= ${.CURDIR}/../${SSLEAYDIST}/crypto | |||
9 | .if ${MACHINE_ARCH} == "i386" | 9 | .if ${MACHINE_ARCH} == "i386" |
10 | CFLAGS+= -DL_ENDIAN -DBN_ASM | 10 | CFLAGS+= -DL_ENDIAN -DBN_ASM |
11 | .else | 11 | .else |
12 | .if ${MACHINE_ARCH} == "arc" | ||
13 | CFLAGS+= -DL_ENDIAN | ||
14 | .else | ||
15 | .if ${MACHINE_ARCH} == "pmax" | ||
16 | CFLAGS+= -DL_ENDIAN | ||
17 | .else | ||
12 | .if ${MACHINE_ARCH} == "alpha" | 18 | .if ${MACHINE_ARCH} == "alpha" |
13 | # no ENDIAN stuff defined for alpha | 19 | # no ENDIAN stuff defined for alpha |
14 | .else | 20 | .else |
15 | CFLAGS+= -DB_ENDIAN | 21 | CFLAGS+= -DB_ENDIAN |
16 | .endif | 22 | .endif |
17 | .endif | 23 | .endif |
24 | .endif | ||
25 | .endif | ||
26 | |||
18 | CFLAGS+= -DNO_IDEA -DTERMIOS -DANSI_SOURCE | 27 | CFLAGS+= -DNO_IDEA -DTERMIOS -DANSI_SOURCE |
19 | CFLAGS+= -I${.CURDIR}/../${SSLEAYDIST} | 28 | CFLAGS+= -I${.CURDIR}/../${SSLEAYDIST} |
20 | CFLAGS+= -I${LSSL_SRC} -I${LCRYPTO_SRC} | 29 | CFLAGS+= -I${LSSL_SRC} -I${LCRYPTO_SRC} |