diff options
author | Dale Rahn <drahn@cvs.openbsd.org> | 2006-10-14 19:43:58 +0000 |
---|---|---|
committer | Dale Rahn <drahn@cvs.openbsd.org> | 2006-10-14 19:43:58 +0000 |
commit | a0d780a189224f578ec7cedd2cc831015f335a4f (patch) | |
tree | 5fac7be584e176647ea8f7f201b58496a9eae6d5 /lib/libssl/crypto | |
parent | 4ecdf099f8bc77de9ced326a1cc34e08b57fe394 (diff) |
architecture sh (landisk) is little endian.
Diffstat (limited to 'lib/libssl/crypto')
-rw-r--r-- | lib/libssl/crypto/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/crypto/Makefile b/lib/libssl/crypto/Makefile index b6b95560160..f2810869628 100644 --- a/lib/libssl/crypto/Makefile +++ b/lib/libssl/crypto/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.45 2006/06/27 05:07:47 djm Exp $ +# $OpenBSD: Makefile,v 1.46 2006/10/14 19:43:57 drahn Exp $ LIB= crypto WANTLINT= @@ -10,7 +10,7 @@ FIPS_SRC= ${SSL_SRC}/fips .if ${MACHINE_ARCH} == "i386" || ${MACHINE_ARCH} == "arm" || \ ${MACHINE_ARCH} == "vax" || ${MACHINE_ARCH} == "amd64" || \ - ${MACHINE_ARCH} == "alpha" + ${MACHINE_ARCH} == "alpha" || ${MACHINE_ARCH} == "sh" CFLAGS+= -DL_ENDIAN .else CFLAGS+= -DB_ENDIAN |