summaryrefslogtreecommitdiff
path: root/hints
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-06-29 14:31:53 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-06-29 14:31:53 +0000
commitdb512b976bff562c49b71e4277c374ca33a1cb85 (patch)
tree68897d4f4ca187bd3f46484235b83cc90a9d8ce5 /hints
parent5f68ba9563cc5b11dfe2a4bfc0907bdedf1104c4 (diff)
downloadperl-db512b976bff562c49b71e4277c374ca33a1cb85.tar.gz
-lpthreads missing in AIX.
p4raw-id: //depot/perl@11031
Diffstat (limited to 'hints')
-rw-r--r--hints/aix.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/hints/aix.sh b/hints/aix.sh
index baa6bbae85..1c2d7a24fb 100644
--- a/hints/aix.sh
+++ b/hints/aix.sh
@@ -257,11 +257,11 @@ EOM
lddlflags="$*"
# Insert pthreads to libswanted, before any libc or libC.
- set `echo X "$libswanted "| sed -e 's/ \([cC]\) / pthreads \1 /'`
+ set `echo X "$libswanted "| sed -e 's/ \([cC]_r\) / pthreads \1 /'`
shift
libswanted="$*"
# Insert pthreads to lddlflags, before any libc or libC.
- set `echo X "$lddlflags " | sed -e 's/ \(-l[cC]\) / -lpthreads \1 /'`
+ set `echo X "$lddlflags " | sed -e 's/ \(-l[cC]_r\) / -lpthreads \1 /'`
shift
lddlflags="$*"