diff options
author | Jérôme Duval <jerome.duval@gmail.com> | 2016-02-23 22:49:01 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-04-14 19:49:42 +0200 |
commit | 6e08e9e7ccf00aba847351adc3b46b9dae1f114d (patch) | |
tree | 8bfd0b8a2187ca1683164229bd475047b8b4a99f /config | |
parent | Fix installation on VMS for no-stdio and no-autoalginit (diff) | |
download | openssl-6e08e9e7ccf00aba847351adc3b46b9dae1f114d.tar.xz openssl-6e08e9e7ccf00aba847351adc3b46b9dae1f114d.zip |
Add Haiku support.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Tim Hudson <tjh@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
Diffstat (limited to 'config')
-rwxr-xr-x | config | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -202,6 +202,10 @@ case "${SYSTEM}:${RELEASE}:${VERSION}:${MACHINE}" in echo "${MACHINE}-whatever-freebsd"; exit 0 ;; + Haiku:*) + echo "${MACHINE}-whatever-haiku"; exit 0 + ;; + NetBSD:*:*:*386*) echo "`(/usr/sbin/sysctl -n hw.model || /sbin/sysctl -n hw.model) | sed 's,.*\(.\)86-class.*,i\186,'`-whatever-netbsd"; exit 0 ;; @@ -724,6 +728,8 @@ case "$GUESSOS" in *ELF*) OUT="BSD-x86-elf" ;; *) OUT="BSD-x86"; options="$options no-sse2" ;; esac ;; + x86_64-*-haiku) OUT="haiku-x86_64" ;; + *-*-haiku) OUT="haiku-x86" ;; *-*-*bsd*) OUT="BSD-generic32" ;; *-*-osf) OUT="osf1-alpha-cc" ;; |