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/ssl/Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'src/lib/libssl/ssl') 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 .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} CFLAGS+= -I${LSSL_SRC} -I${LCRYPTO_SRC} -- cgit v1.2.3-55-g6feb