From dfc8dc699c7537a774920541d1517de4a3d01502 Mon Sep 17 00:00:00 2001 From: beck <> Date: Mon, 12 Oct 1998 05:26:13 +0000 Subject: *UNTESTED* Makefile and configure changes that may work with pmax and arc. *These need to be tested by someone who has one!!* --- src/lib/libssl/crypto/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'src/lib/libssl/crypto') 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 .if ${MACHINE_ARCH} == "i386" CFLAGS+= -DL_ENDIAN -DBN_ASM .else +.if ${MACHINE_ARCH} == "arc" +CFLAGS+= -DL_ENDIAN +.else +.if ${MACHINE_ARCH} == "pmax" +CFLAGS+= -DL_ENDIAN +.else .if ${MACHINE_ARCH} == "alpha" # no ENDIAN stuff defined for alpha .else CFLAGS+= -DB_ENDIAN .endif .endif +.endif +.endif CFLAGS+= -DNO_IDEA -DTERMIOS -DANSI_SOURCE CFLAGS+= -I${.CURDIR}/../${SSLEAYDIST} -- cgit v1.2.3-55-g6feb