diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-07-09 22:55:14 +0000 |
---|---|---|
committer | Charles Bailey <bailey@genetics.upenn.edu> | 1996-07-09 22:55:14 +0000 |
commit | 5e79a27ab8657b40a1ba45b02fa151bd3d5fcd46 (patch) | |
tree | 107f47a7250e653cdc4bdaca610dab4282045309 /hints | |
parent | 9aff00ad656192f58f8211866be7b0ca98f69029 (diff) | |
download | perl-5e79a27ab8657b40a1ba45b02fa151bd3d5fcd46.tar.gz |
Eliminate hints now correctly handled by Configure
Diffstat (limited to 'hints')
-rw-r--r-- | hints/irix_6_2.sh | 23 |
1 files changed, 6 insertions, 17 deletions
diff --git a/hints/irix_6_2.sh b/hints/irix_6_2.sh index 111c4ad02c..e3488cc984 100644 --- a/hints/irix_6_2.sh +++ b/hints/irix_6_2.sh @@ -1,28 +1,17 @@ # irix_6_2.sh -# from Krishna Sethuraman, krishna@sgi.com -# Date: Tue Aug 22 00:38:26 PDT 1995 -# removed -ansiposix and -D_POSIX_SOURCE cuz it was choking +# original from Krishna Sethuraman, krishna@sgi.com +# Configure has been made smarter, so this is shorter than it once was. -# Perl built with this hints file under IRIX 6.2 passes -# all tests (`make test'). - -ld=ld -i_time='define' -cc="cc -32" ccflags="$ccflags -D_BSD_TYPES -D_BSD_TIME -Olimit 3000" -#ccflags="$ccflags -Olimit 3000" # this line builds perl but not tk (beta 8) -lddlflags="-32 -shared" -# Configure would suggest the default -Kpic, which won't work for SGI. -# Configure will respect this blank hint value instead. -cccdlflags=' ' # We don't want these libraries. Anyone know why? set `echo X "$libswanted "|sed -e 's/ socket / /' -e 's/ nsl / /' -e 's/ dl / /'` shift libswanted="$*" + # Don't need sun crypt bsd PW under 6.2. You *may* need to link # with these if you want to run perl built under 6.2 on a 5.3 machine # (I haven't checked) -#set `echo X "$libswanted "|sed -e 's/ sun / /' -e 's/ crypt / /' -e 's/ bsd / /' -e 's/ PW / /'` -#shift -#libswanted="$*" +set `echo X "$libswanted "|sed -e 's/ sun / /' -e 's/ crypt / /' -e 's/ bsd / /' -e 's/ PW / /'` +shift +libswanted="$*" |