From 9c789ad1885d9162500d452b41cecbb018f02ad3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Ulf=20M=C3=B6ller?= Date: Wed, 16 Jun 1999 20:26:46 +0000 Subject: [PATCH] Recognize CPU on BSD/OS. --- config | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/config b/config index b2f1584cb8..06c59f4bff 100755 --- a/config +++ b/config @@ -119,7 +119,14 @@ case "${SYSTEM}:${RELEASE}:${VERSION}:${MACHINE}" in ;; BSD/386:*:*:*486*|BSD/OS:*:*:*:*486*) - echo "i486-whatever-bsdi"; exit 0 + case `/sbin/sysctl -n hw.model` in + Pentium*) + echo "i586-whatever-bsd"; exit 0 + ;; + *) + echo "i386-whatever-bsd"; exit 0 + ;; + esac; ;; BSD/386:*|BSD/OS:*) -- 2.34.1