Hi GNU friends!

I attached a patch for config.guess and info of my OS.

uname -m = amd64
uname -r = 1.0
uname -s = SecBSD
uname -v = GENERIC.MP#1

/usr/bin/uname -p = amd64
/bin/uname -X =

hostinfo =
/bin/universe =
/usr/bin/arch -k = SecBSD.amd64
/bin/arch =
/usr/bin/oslevel =
/usr/convex/getsysinfo =

UNAME_MACHINE = amd64
UNAME_RELEASE = 1.0
UNAME_SYSTEM = SecBSD
UNAME_VERSION = GENERIC.MP#1
--- config.guess        Fri Apr 16 21:44:57 2021
+++ config.guess.patched        Fri Apr 16 21:55:45 2021
@@ -2,7 +2,7 @@
 # Attempt to guess a canonical system name.
 #   Copyright 1992-2021 Free Software Foundation, Inc.
 
-timestamp='2021-01-25'
+timestamp='2021-04-16'
 
 # This file is free software; you can redistribute it and/or modify it
 # under the terms of the GNU General Public License as published by
@@ -260,6 +260,10 @@
     *:OpenBSD:*:*)
        UNAME_MACHINE_ARCH=$(arch | sed 's/OpenBSD.//')
        echo "$UNAME_MACHINE_ARCH"-unknown-openbsd"$UNAME_RELEASE"
+       exit ;;
+    *:SecBSD:*:*)
+       UNAME_MACHINE_ARCH=$(arch | sed 's/SecBSD.//')
+       echo "$UNAME_MACHINE_ARCH"-unknown-secbsd"$UNAME_RELEASE"
        exit ;;
     *:LibertyBSD:*:*)
        UNAME_MACHINE_ARCH=$(arch | sed 's/^.*BSD\.//')

Reply via email to