summaryrefslogtreecommitdiff
path: root/src/lib/libssl/ssl
diff options
context:
space:
mode:
authorbeck <>1998-10-12 05:26:13 +0000
committerbeck <>1998-10-12 05:26:13 +0000
commitdfc8dc699c7537a774920541d1517de4a3d01502 (patch)
treecd71ade1608e603cabf38d649d945cfdc8733ff4 /src/lib/libssl/ssl
parent6d7465ed57dc209c50f2936a017603a6cd23b064 (diff)
downloadopenbsd-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/Makefile9
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"
10CFLAGS+= -DL_ENDIAN -DBN_ASM 10CFLAGS+= -DL_ENDIAN -DBN_ASM
11.else 11.else
12.if ${MACHINE_ARCH} == "arc"
13CFLAGS+= -DL_ENDIAN
14.else
15.if ${MACHINE_ARCH} == "pmax"
16CFLAGS+= -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
15CFLAGS+= -DB_ENDIAN 21CFLAGS+= -DB_ENDIAN
16.endif 22.endif
17.endif 23.endif
24.endif
25.endif
26
18CFLAGS+= -DNO_IDEA -DTERMIOS -DANSI_SOURCE 27CFLAGS+= -DNO_IDEA -DTERMIOS -DANSI_SOURCE
19CFLAGS+= -I${.CURDIR}/../${SSLEAYDIST} 28CFLAGS+= -I${.CURDIR}/../${SSLEAYDIST}
20CFLAGS+= -I${LSSL_SRC} -I${LCRYPTO_SRC} 29CFLAGS+= -I${LSSL_SRC} -I${LCRYPTO_SRC}