Index: config.guess =================================================================== RCS file: /cvs/src/gnu/egcs/config.guess,v retrieving revision 1.1.2.1 retrieving revision 1.7 diff -d -u -d -u -r1.1.2.1 -r1.7 --- config.guess 18 Jan 2004 15:33:16 -0000 1.1.2.1 +++ config.guess 18 Jan 2004 15:53:11 -0000 1.7 @@ -139,6 +141,16 @@ # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in + *:ekkoBSD:*:*) + echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} + exit 0 ;; + *:MicroBSD:*:*) + echo ${UNAME_MACHINE}-unknown-microbsd${UNAME_RELEASE} + exit 0 ;; + *:MirBSD:*:*) + # @@PORTS@@ + echo ${UNAME_MACHINE}-ecce-mirbsd${UNAME_RELEASE} + exit 0 ;; *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, Index: config.sub =================================================================== RCS file: /cvs/src/gnu/egcs/config.sub,v retrieving revision 1.1.2.1 retrieving revision 1.7 diff -d -u -d -u -r1.1.2.1 -r1.7 --- config.sub 18 Jan 2004 15:33:17 -0000 1.1.2.1 +++ config.sub 18 Jan 2004 15:53:12 -0000 1.7 @@ -1114,8 +1116,8 @@ if [ x"$os" != x"" ] then case $os in - # First match some system type aliases - # that might get confused with valid system types. + # First match some system type aliases + # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` @@ -1143,7 +1145,8 @@ | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ - | -hiux* | -386bsd* | -knetbsd* | -netbsd* | -openbsd* | -kfreebsd* | -freebsd* | -riscix* \ + | -hiux* | -386bsd* | -knetbsd* | -netbsd* | -openbsd* | -ekkobsd* \ + | -microbsd* | -mirbsd* | -kfreebsd* | -freebsd* | -riscix* \ | -lynxos* | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ @@ -1194,7 +1197,7 @@ -opened*) os=-openedition ;; - -os400*) + -os400*) os=-os400 ;; -wince*) @@ -1243,7 +1246,7 @@ -sinix*) os=-sysv4 ;; - -tpf*) + -tpf*) os=-tpf ;; -triton*) @@ -1314,8 +1317,8 @@ os=-aout ;; c4x-* | tic4x-*) - os=-coff - ;; + os=-coff + ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 @@ -1521,10 +1524,14 @@ -vos*) vendor=stratus ;; + -mirbsd*) + vendor=ecce + ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac +# @@PORTS@@ echo $basic_machine$os exit 0