diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 1999-03-02 23:12:36 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 1999-03-02 23:12:36 +0000 |
commit | 227c31c3430bbf328868bf1f4c9abf171e662db9 (patch) | |
tree | a7dabd50074b7b264d48d7a34adc0436bcc715df /hints | |
parent | 7d4ba924cffa17b20a2c7f77186bab223278f3d5 (diff) | |
download | perl-227c31c3430bbf328868bf1f4c9abf171e662db9.tar.gz |
The HP-UX threads patch (change #3028) is needed also here.
p4raw-link: @3028 on //depot/maint-5.005/perl: d9761d5fa9df9e662778f8ca3ed55c2e3037a72a
p4raw-id: //depot/cfgperl@3052
Diffstat (limited to 'hints')
-rw-r--r-- | hints/hpux.sh | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/hints/hpux.sh b/hints/hpux.sh index 70250b7a75..b215335c72 100644 --- a/hints/hpux.sh +++ b/hints/hpux.sh @@ -237,11 +237,14 @@ EOM # instead of fd_set * (just like 9.X) selecttype='int *' ;; - 11 | 12) # 12 may want upping the _POSIX_C_SOURCE - ccflags="$ccflags -D_POSIX_C_SOURCE=199506L" - libswanted="$libswanted pthread" + 11 | 12) # 12 may want upping the _POSIX_C_SOURCE datestamp... + ccflags=" -D_POSIX_C_SOURCE=199506L $ccflags" + set `echo X "$libswanted "| sed -e 's/ c / pthread c /'` + shift + libswanted="$*" ;; esac + usemymalloc='n' ;; esac EOCBU |