From: Richard M. Stallman Date: Wed, 30 Apr 2003 09:23:02 +0000 (+0000) Subject: Handle system types sysv5uw* and sysv5OpenUNIX*. X-Git-Tag: ttn-vms-21-2-B4~10385 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=167899c437fa059886c387fc05ffb6d4b2e83c2e;p=emacs.git Handle system types sysv5uw* and sysv5OpenUNIX*. --- diff --git a/configure.in b/configure.in index 231b02b6c00..76bed200bfb 100644 --- a/configure.in +++ b/configure.in @@ -1078,6 +1078,8 @@ case "${canonical}" in OVERRIDE_CPPFLAGS=" " ;; *-sysv4.2uw* ) opsys=unixware; NON_GNU_CPP=/lib/cpp ;; + *-sysv5uw* ) opsys=unixware; NON_GNU_CPP=/lib/cpp ;; + *-sysv5OpenUNIX* ) opsys=unixware; NON_GNU_CPP=/lib/cpp ;; *-386bsd* ) opsys=386bsd ;; *-nextstep* ) opsys=nextstep ;; ## Otherwise, we'll fall through to the generic opsys code at the bottom. @@ -1140,6 +1142,8 @@ if test x"${opsys}" = x; then *-sysv2.2 | *-sysvr2.2 ) opsys=usg5-2-2 ;; *-sysv3* | *-sysvr3* ) opsys=usg5-3 ;; *-sysv4.2uw* ) opsys=unixware ;; + *-sysv5uw* ) opsys=unixware ;; + *-sysv5OpenUNIX* ) opsys=unixware ;; *-sysv4.1* | *-sysvr4.1* ) NON_GNU_CPP=/usr/lib/cpp opsys=usg5-4 ;;