diff options
author | drahn <> | 2006-10-14 19:43:57 +0000 |
---|---|---|
committer | drahn <> | 2006-10-14 19:43:57 +0000 |
commit | 16f6f01d893bb3c377c284a5f79e939ae8263918 (patch) | |
tree | 4f2458264029b97825f46e1ca4b915b6fbd149cf | |
parent | 16f3998fffb9fa6b0a8b894d1ba84c94e3fc6c69 (diff) | |
download | openbsd-16f6f01d893bb3c377c284a5f79e939ae8263918.tar.gz openbsd-16f6f01d893bb3c377c284a5f79e939ae8263918.tar.bz2 openbsd-16f6f01d893bb3c377c284a5f79e939ae8263918.zip |
architecture sh (landisk) is little endian.
-rw-r--r-- | src/lib/libssl/crypto/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libssl/crypto/Makefile b/src/lib/libssl/crypto/Makefile index b6b9556016..f281086962 100644 --- a/src/lib/libssl/crypto/Makefile +++ b/src/lib/libssl/crypto/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.45 2006/06/27 05:07:47 djm Exp $ | 1 | # $OpenBSD: Makefile,v 1.46 2006/10/14 19:43:57 drahn Exp $ |
2 | 2 | ||
3 | LIB= crypto | 3 | LIB= crypto |
4 | WANTLINT= | 4 | WANTLINT= |
@@ -10,7 +10,7 @@ FIPS_SRC= ${SSL_SRC}/fips | |||
10 | 10 | ||
11 | .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "arm" || \ | 11 | .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "arm" || \ |
12 | ${MACHINE_ARCH} == "vax" || ${MACHINE_ARCH} == "amd64" || \ | 12 | ${MACHINE_ARCH} == "vax" || ${MACHINE_ARCH} == "amd64" || \ |
13 | ${MACHINE_ARCH} == "alpha" | 13 | ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "sh" |
14 | CFLAGS+= -DL_ENDIAN | 14 | CFLAGS+= -DL_ENDIAN |
15 | .else | 15 | .else |
16 | CFLAGS+= -DB_ENDIAN | 16 | CFLAGS+= -DB_ENDIAN |