diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2000-03-22 05:25:40 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2000-03-22 05:25:40 +0000 |
commit | 34163b213ca9891366c868cfe99211a3447832a9 (patch) | |
tree | 2923afe374d7332f619abd3062944f1ded421a86 /hints | |
parent | 2220a07647482cb163ce6787c70ef1e59ae78241 (diff) | |
download | perl-34163b213ca9891366c868cfe99211a3447832a9.tar.gz |
OpenBSD pthreadness fixes from Tom Christiansen.
p4raw-id: //depot/cfgperl@5867
Diffstat (limited to 'hints')
-rw-r--r-- | hints/openbsd.sh | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/hints/openbsd.sh b/hints/openbsd.sh index 7e68402088..a7d8bf2950 100644 --- a/hints/openbsd.sh +++ b/hints/openbsd.sh @@ -68,7 +68,11 @@ cat > UU/usethreads.cbu <<'EOCBU' case "$usethreads" in $define|true|[yY]*) # any openbsd version dependencies with pthreads? + ccflags="-pthread $ccflags" + ldflags="-pthread $ldflags" libswanted="$libswanted pthread" + # This is strange. + usevfork="$undef" esac EOCBU |