Use same name in the definition as in the header file declaration :-/
[openssl.git] / config
diff --git a/config b/config
index 9ab969af406ddf284432fd1dbbbcbb3815425ef9..306af22654bf382312c9cce81bbf1a3bc58c77cb 100755 (executable)
--- a/config
+++ b/config
@@ -114,12 +114,19 @@ case "${SYSTEM}:${RELEASE}:${VERSION}:${MACHINE}" in
        echo "${MACHINE}-lynx-lynxos"; exit 0
        ;;
 
-    BSD/OS:4.*)
-       echo "${MACHINE}-whatever-bsdi4"; exit 0
+    BSD/OS:4.*)  # BSD/OS always says 386
+       echo "i486-whatever-bsdi4"; exit 0
        ;;
 
     BSD/386:*:*:*486*|BSD/OS:*:*:*:*486*)
-       echo "i486-whatever-bsdi"; exit 0
+        case `/sbin/sysctl -n hw.model` in
+           Pentium*)
+                echo "i586-whatever-bsdi"; exit 0
+                ;;
+            *)
+                echo "i386-whatever-bsdi"; exit 0
+                ;;
+            esac;
        ;;
 
     BSD/386:*|BSD/OS:*)