diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-11-20 19:18:31 +0200 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2002-11-21 13:59:12 +0000 |
commit | 53df3d8cb98cbfbef669eddaaa174212d27bd68c (patch) | |
tree | 9f9b90c1b78346142613ba03b4410f0853859afb /hints/irix_6.sh | |
parent | 39aa8287bdfc9ec0aeb8d8ace09b665ef71c53a8 (diff) | |
download | perl-53df3d8cb98cbfbef669eddaaa174212d27bd68c.tar.gz |
hires sleeping wants libs
Message-ID: <20021120151830.GC127060@lyta.hut.fi>
p4raw-id: //depot/perl@18168
Diffstat (limited to 'hints/irix_6.sh')
-rw-r--r-- | hints/irix_6.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/hints/irix_6.sh b/hints/irix_6.sh index ef7c5a6630..032c2b83fa 100644 --- a/hints/irix_6.sh +++ b/hints/irix_6.sh @@ -326,7 +326,8 @@ EOCCBU # We don't want these libraries. # Socket networking is in libc, these are not installed by default, # and just slow perl down. (scotth@sgi.com) -set `echo X "$libswanted "|sed -e 's/ socket / /' -e 's/ nsl / /' -e 's/ dl / /'` +# librt contains nothing we need (some places need it for Time::HiRes) --jhi +set `echo X "$libswanted "|sed -e 's/ socket / /' -e 's/ nsl / /' -e 's/ dl / /' -e 's/ rt / /'` shift libswanted="$*" |