X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=configure;h=602011630a3d9bd4cee6bbbf5ee684986ac00b3e;hp=59daa9ba8b5a6d284cd2a085a76950fbb4745056;hb=c0313302c4768d93820d80e08abba08fb81781b1;hpb=2874cacceefc32c0371e0670af1604a99554161a diff --git a/configure b/configure index 59daa9b..6020116 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: configure,v 1.7 1995/12/18 03:31:30 paulus Exp $ +# $Id: configure,v 1.10 1996/09/14 05:08:07 paulus Exp $ if [ -d /NextApps ]; then system="NeXTStep" @@ -32,16 +32,10 @@ case $system in 4.[01]*) state="early"; ksrc="ultrix";; 4.[234]) state="known"; ksrc="ultrix";; esac;; - AIX) - makext="aix4"; - version=`uname -v` - case $version.$release in - 4.1) state="known"; ksrc="aix4";; - 4.[2-9]*) state="late"; ksrc="aix4";; - esac;; OSF1) makext="osf"; case $release in + V1.*) state="ancient"; ksrc="osf1";; V[23].*) state="known"; ksrc="osf1";; V[4-9]*) state="late"; ksrc="osf1";; esac;; @@ -60,6 +54,11 @@ case $system in makext="NeXT"; ksrc="NeXT"; state="known";; + SINIX-?) + case $release in + 5.4[01]) state=known; ksrc=svr4; makext=svr4;; + 5.4[2-9]) state=late; ksrc=svr4; makext=svr4;; + esac;; # Intel SVR4 systems come with a bug in the uname program. Unless # your provider fixed the bug, or you get a fix for it, uname -S will # overwrite the system name with the node name! @@ -70,6 +69,11 @@ case $system in esac;; esac +if [ -d "$ksrc" ]; then :; else + state="notincluded" + unset ksrc +fi + case $state in ancient) echo "This is an old release of a supported OS ($system)." @@ -85,9 +89,12 @@ case $state in echo "this software was released. It may or may not work.";; unknown) echo "This software has not been ported to this system. Sorry.";; + notincluded) + echo "Support for this system has not been included" + echo "in this distribution. Sorry.";; esac -if [ $ksrc ]; then +if [ -d "$ksrc" ]; then echo "Creating links to Makefiles." rm -f Makefile ln -s $ksrc/Makefile.top Makefile