X-Git-Url: https://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=configure;h=90c76d219f6b06156509bee6b4d5d6ee20525d14;hp=c519eadac8df3bf7265f33feaea4f290b24d29df;hb=f201866a877a11896aa9deffe7343670d756ea6d;hpb=75b939e20d5e27fa7e0113fe782d6c2f6a521602 diff --git a/configure b/configure index c519ead..90c76d2 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: configure,v 1.8 1996/05/24 07:03:01 paulus Exp $ +# $Id: configure,v 1.11 1996/09/26 06:15:36 paulus Exp $ if [ -d /NextApps ]; then system="NeXTStep" @@ -35,6 +35,7 @@ case $system in 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;; @@ -53,16 +54,26 @@ 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! - UNIX_System_V|`uname -n`) + UNIX_SV|UNIX_System_V|`uname -n`) case $release in 4.0) state=known; ksrc=svr4; makext=svr4;; 4.2) state=late; ksrc=svr4; makext=svr4;; 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)." @@ -78,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