aboutsummaryrefslogtreecommitdiff
path: root/config
diff options
context:
space:
mode:
authorRalf S. Engelschall <rse@openssl.org>1999-08-08 11:56:29 +0000
committerRalf S. Engelschall <rse@openssl.org>1999-08-08 11:56:29 +0000
commit70d65fe0e0e113c91103006e7d850f073b7b0603 (patch)
tree47e5137089dd78c49e2ab6809361403d2d105c23 /config
parent6368c8b7d61a6cf35838aa6a076b045298721446 (diff)
downloadopenssl-70d65fe0e0e113c91103006e7d850f073b7b0603.zip
openssl-70d65fe0e0e113c91103006e7d850f073b7b0603.tar.gz
openssl-70d65fe0e0e113c91103006e7d850f073b7b0603.tar.bz2
Backout the following change:
| revision 1.109 | date: 1999/06/24 19:39:23; author: ulf; state: Exp; lines: +0 -1 | Use the same CPU recogition method for FreeBSD 3 as for the other FreeBSD | versions. (The FreeBSD and FreeBSD-elf Configure entries were identical.) Because Ulf overlooked the ELF vs. a.out difference, i.e. the two entries were _NOT_ identical! This way OpenSSL 0.9.4 at least compiles again under FreeBSD 2 and 3. For 0.9.5-dev I'll try to fix the stuff in a more general way to also allow FreeBSD 4 and other variants.
Diffstat (limited to 'config')
-rwxr-xr-xconfig7
1 files changed, 6 insertions, 1 deletions
diff --git a/config b/config
index f7d4ca7..33ce3e4 100755
--- a/config
+++ b/config
@@ -137,6 +137,10 @@ case "${SYSTEM}:${RELEASE}:${VERSION}:${MACHINE}" in
echo "${MACHINE}-whatever-bsdi"; exit 0
;;
+ FreeBSD:3*:*:*)
+ echo "${MACHINE}-whatever-freebsd3"; exit 0
+ ;;
+
FreeBSD:*:*:*386*)
case `sysctl -n hw.model` in
Pentium*)
@@ -398,7 +402,8 @@ case "$GUESSOS" in
sun4*-sun-solaris2) OUT="solaris-sparcv7-$CC" ;;
*86*-sun-solaris2) OUT="solaris-x86-$CC" ;;
*-*-sunos4) OUT="sunos-$CC" ;;
- alpha*-*-freebsd) OUT="FreeBSD-alpha" ;;
+ alpha*-*-freebsd3) OUT="FreeBSD-alpha" ;;
+ *-freebsd3) OUT="FreeBSD-elf" ;;
*-freebsd) OUT="FreeBSD" ;;
*86*-*-netbsd) OUT="NetBSD-x86" ;;
sun3*-*-netbsd) OUT="NetBSD-m68" ;;