diff options
author | 2000-10-13 21:31:28 +0000 | |
---|---|---|
committer | 2000-10-13 21:31:28 +0000 | |
commit | 65fb63ca429a587288a0295f78b4f406cb9c952e (patch) | |
tree | 41a5d391024400954e1180410db97f64957f0c0d /lib/libssl/ssl | |
parent | 2 sets of ptys; drahn (diff) | |
download | wireguard-openbsd-65fb63ca429a587288a0295f78b4f406cb9c952e.tar.xz wireguard-openbsd-65fb63ca429a587288a0295f78b4f406cb9c952e.zip |
vax support; checked by beck.
Diffstat (limited to 'lib/libssl/ssl')
-rw-r--r-- | lib/libssl/ssl/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libssl/ssl/Makefile b/lib/libssl/ssl/Makefile index 0f80ee51880..5e0f8ae8c11 100644 --- a/lib/libssl/ssl/Makefile +++ b/lib/libssl/ssl/Makefile @@ -12,6 +12,9 @@ CFLAGS+= -DL_ENDIAN -DBN_ASM .if ${MACHINE_ARCH} == "mips" CFLAGS+= -DL_ENDIAN .else +.if ${MACHINE_ARCH} == "vax" +CFLAGS+= -DL_ENDIAN +.else .if ${MACHINE_ARCH} == "alpha" # no ENDIAN stuff defined for alpha .else @@ -19,6 +22,7 @@ CFLAGS+= -DB_ENDIAN .endif .endif .endif +.endif CFLAGS+= -DNO_IDEA -DTERMIOS -DANSI_SOURCE CFLAGS+= -I${.CURDIR}/../${SSLEAYDIST}/include |