diff options
author | Andy Polyakov <appro@openssl.org> | 2007-08-31 12:09:34 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2007-08-31 12:09:34 +0200 |
commit | 0bb01b7df099ad4d45262138b7958ea652c42401 (patch) | |
tree | 5ce8a952b619b3f84427b53bdd124b2661caa53e /config | |
parent | Compress and more aggressively constify ec_curve.c [the latter is (diff) | |
download | openssl-0bb01b7df099ad4d45262138b7958ea652c42401.tar.xz openssl-0bb01b7df099ad4d45262138b7958ea652c42401.zip |
Offer darwin64-x86_64-cc as option.
Diffstat (limited to 'config')
-rwxr-xr-x | config | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -536,7 +536,17 @@ case "$GUESSOS" in fi fi OUT="darwin-ppc-cc" ;; - i386-apple-darwin*) OUT="darwin-i386-cc" ;; + i386-apple-darwin*) + ISA64=`(sysctl -n hw.optional.x86_64) 2>/dev/null` + if [ "$ISA64" = "1" ]; then + echo "WARNING! If you wish to build 64-bit library, then you have to" + echo " invoke './Configure darwin64-x86_86-cc' *manually*." + if [ "$TEST" = "false" -a -t 1 ]; then + echo " You have about 5 seconds to press Ctrl-C to abort." + (trap "stty `stty -g`" 2 0; stty -icanon min 0 time 50; read waste) <&1 + fi + fi + OUT="darwin-i386-cc" ;; alpha-*-linux2) ISA=`awk '/cpu model/{print$4;exit(0);}' /proc/cpuinfo` case ${ISA:-generic} in |