diff options
author | Andy Dougherty <doughera@lafayette.edu> | 1999-09-28 08:20:50 -0400 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-09-28 18:14:39 +0000 |
commit | c22e42be2432273165175c9218ee7b6238bfca24 (patch) | |
tree | 7ca292a339c471433f9d12ab26120dfcde62f74e /hints/esix4.sh | |
parent | cc50ac46d6f5968c34044ce7c501b06af15fc51a (diff) | |
download | perl-c22e42be2432273165175c9218ee7b6238bfca24.tar.gz |
To: Perl Porters <perl5-porters@perl.org>
Subject: [PATCH 5.005_xx] Re: [Config 5.005_03] -DDEBUGGING
Date: Tue, 28 Sep 1999 12:20:50 -0400 (EDT)
Message-ID: <Pine.SOL.4.10.9909281019360.1890-100000@maxwell.phys.lafayette.edu>
From: Andy Dougherty <doughera@lafayette.edu>
To: Perl Porters <perl5-porters@perl.org>
Subject: [ANOTHER PATCH 5.005_61] Re: [Config 5.005_03] -DDEBUGGING
Date: Tue, 28 Sep 1999 13:39:49 -0400 (EDT)
Message-ID: <Pine.SOL.4.10.9909281338180.2012-100000@maxwell.phys.lafayette.edu>
p4raw-id: //depot/cfgperl@4248
Diffstat (limited to 'hints/esix4.sh')
-rw-r--r-- | hints/esix4.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/hints/esix4.sh b/hints/esix4.sh index 695f8b870f..9967207d37 100644 --- a/hints/esix4.sh +++ b/hints/esix4.sh @@ -3,14 +3,18 @@ # Kevin O'Gorman ( kevin@kosman.UUCP, kevin%kosman.uucp@nrc.com ) # # Use Configure -Dcc=gcc to use gcc. + +# Why can't we just use PATH? It contains /usr/ccs/bin. case "$cc" in '') cc='/bin/cc' test -f $cc || cc='/usr/ccs/bin/cc' ;; esac -ldflags='-L/usr/ccs/lib -L/usr/ucblib' + +ldflags="$ldflags -L/usr/ccs/lib -L/usr/ucblib" test -d /usr/local/man || mansrc='none' -ccflags='-I/usr/include -I/usr/ucbinclude' +# Do we really need to tell cc to look in /usr/include? +ccflags="$ccflags -I/usr/include -I/usr/ucbinclude" libswanted=`echo " $libswanted " | sed -e 's/ malloc / /' ` d_index='undef' d_suidsafe=define |