summaryrefslogtreecommitdiffstats
path: root/config
diff options
context:
space:
mode:
authorAndy Polyakov <appro@openssl.org>2000-02-15 17:31:12 +0000
committerAndy Polyakov <appro@openssl.org>2000-02-15 17:31:12 +0000
commitf8bbcf3af0e4300590785803dc5aff757f11bb4f (patch)
tree340dc6c69139cc359f2fddd901e347c3e29f299b /config
parent89cee61b45725a57cb45defca4ee014a70790fe1 (diff)
Avoid GNU C assembler templates under Solaris x86.
Diffstat (limited to 'config')
-rwxr-xr-xconfig19
1 files changed, 11 insertions, 8 deletions
diff --git a/config b/config
index e9ab8befee..50d9740762 100755
--- a/config
+++ b/config
@@ -472,14 +472,17 @@ then
sleep 5
OUT=linux-sparcv8
fi
-if [ "$OUT" = "i86pc-sun-solaris2" ]
-then
- ASM=`as -V /dev/null 2>&1`
- case "$ASM" in
- GNU*) ;;
- *) options="$options no-asm" ; echo "WARNING: You need the GNU assembler to use OpenSSL assembler code." ; echo "Sun as is not supported on Solaris x86." ;;
- esac
-fi
+# To start with $OUT is never i86pc-sun-solaris2. Secondly why
+# ban *all* assembler implementation if it can't stand only one,
+# SHA-0 implementation.
+#if [ "$OUT" = "i86pc-sun-solaris2" ]
+#then
+# ASM=`as -V /dev/null 2>&1`
+# case "$ASM" in
+# GNU*) ;;
+# *) options="$options no-asm" ; echo "WARNING: You need the GNU assembler to use OpenSSL assembler code." ; echo "Sun as is not supported on Solaris x86." ;;
+# esac
+#fi
case "$GUESSOS" in
i386-*) options="$options 386" ;;