Hi, I am using the GNU autotools to build software. One system that is not supported by config.sub is INTEGRITY. Can someone please add support for this OS to config.sub so I eventually don't need to patch this script each time:
FYI: INTEGRITY is a RTOS with some support for Posix from Green Hills Software (http://www.ghs.com). A simple patch follows: --- config.sub.orig 2007-04-26 17:45:27.000000000 -0700 +++ config.sub 2007-04-26 17:48:59.000000000 -0700 @@ -1122,6 +1122,7 @@ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* \ + | -integrity* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -netbsd* | -openbsd* | -freebsd* | -riscix* \ @@ -1466,6 +1467,9 @@ -ptx*) vendor=sequent ;; + -integrity*) + vendor=ghs + ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -- Sverre Hvammen Johansen [EMAIL PROTECTED]
