diff options
author | Per Fogelstrom <pefo@cvs.openbsd.org> | 1999-02-01 16:46:35 +0000 |
---|---|---|
committer | Per Fogelstrom <pefo@cvs.openbsd.org> | 1999-02-01 16:46:35 +0000 |
commit | 074959fb7c947a4c4a307d9cb50887ec8dd7e064 (patch) | |
tree | e6c9378401ec22e6b085515e318f4815bd226d7c /lib/libssl | |
parent | 7d9e6114eda54cec168754bcd13b9260a66e791c (diff) |
There must be a better way...
Diffstat (limited to 'lib/libssl')
-rw-r--r-- | lib/libssl/ssl-patent/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/libssl/ssl-patent/Makefile b/lib/libssl/ssl-patent/Makefile index f5084749ab9..3816de81ea2 100644 --- a/lib/libssl/ssl-patent/Makefile +++ b/lib/libssl/ssl-patent/Makefile @@ -9,10 +9,13 @@ LCRYPTO_SRC= ${.CURDIR}/../${SSLEAYDIST}/crypto .if ${MACHINE_ARCH} == "i386" CFLAGS+= -DL_ENDIAN -DBN_ASM .else -.if ${MACHINE_ARCH} == "arc" +.if ${MACHINE} == "arc" CFLAGS+= -DL_ENDIAN .else -.if ${MACHINE_ARCH} == "pmax" +.if ${MACHINE} == "galileo" +CFLAGS+= -DL_ENDIAN +.else +.if ${MACHINE} == "pmax" CFLAGS+= -DL_ENDIAN .else .if ${MACHINE_ARCH} == "alpha" @@ -22,6 +25,7 @@ CFLAGS+= -DB_ENDIAN .endif .endif .endif +.endif .endif CFLAGS+= -DNO_IDEA -DTERMIOS -DANSI_SOURCE |