X-Git-Url: http://git.ozlabs.org/?p=ppp.git;a=blobdiff_plain;f=configure;h=8aac73308c06e45d0ce558ecdf789e5efaeb45d7;hp=cbb1d78f2ae596862c5b524b67b3ef88dbefa637;hb=ec6acd10d0bae0bacc3b6b66944bcd8e33b10b71;hpb=6da76c17317b4fb6d06a0b8a84861eb2bb4160bc diff --git a/configure b/configure index cbb1d78..8aac733 100755 --- a/configure +++ b/configure @@ -1,5 +1,5 @@ #!/bin/sh -# $Id: configure,v 1.17 1999/05/13 00:31:34 paulus Exp $ +# $Id: configure,v 1.21 1999/09/21 20:35:18 masputra Exp $ if [ -d /NextApps ]; then system="NeXTStep" @@ -21,10 +21,15 @@ case $system in state="late"; ksrc="netbsd-1.2";; esac;; SunOS) + machine=`uname -p` case $release in [0-3]*) state="ancient";; 4*) state="known"; ksrc="sunos4"; makext="sunos4";; - 5*) state="known"; ksrc="svr4"; makext="sol2";; + 5.[1-6]*) state="known"; ksrc="svr4"; makext="sol2";; + 5.[789]*) state="known"; ksrc="svr4"; makext="sol2"; + if [ "$machine" = sparc ]; then + lp64="y" + fi;; esac;; ULTRIX) makext="ultrix"; @@ -102,15 +107,25 @@ case $state in echo "in this distribution. Sorry.";; esac +orig_makext=$makext + if [ -d "$ksrc" ]; then echo "Creating links to Makefiles." rm -f Makefile ln -s $ksrc/Makefile.top Makefile echo " Makefile -> $ksrc/Makefile.top" - if [ $ksrc = svr4 ]; then + if [ "$ksrc" = svr4 ]; then + # Point to 64-bit Makefile extension + if [ "$lp64" = y ]; then + makext=$makext-64 + fi rm -f $ksrc/Makefile ln -s Makefile.$makext $ksrc/Makefile echo " $ksrc/Makefile -> Makefile.$makext" + # Restore extension + if [ "$lp64" = y ]; then + makext=$orig_makext + fi fi for dir in pppd pppstats chat pppdump; do rm -f $dir/Makefile