diff options
author | Mark Murray <markm@FreeBSD.org> | 1999-05-02 14:33:17 +0000 |
---|---|---|
committer | Mark Murray <markm@FreeBSD.org> | 1999-05-02 14:33:17 +0000 |
commit | 7c312e6b6a7b1f9412f10365baf3c5eca8fa5649 (patch) | |
tree | b4adabf341898a4378f4b7f8c7fb65f3f7c77769 /contrib/perl5/hints/openbsd.sh | |
parent | ff6b7ba98e8d4aab04cbe2bfdffdfc9171c1812b (diff) |
Maintenance releace 3 of perl5.005. Includes support for threads.
Notes
Notes:
svn path=/vendor/perl5/dist/; revision=46307
Diffstat (limited to 'contrib/perl5/hints/openbsd.sh')
-rw-r--r-- | contrib/perl5/hints/openbsd.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/contrib/perl5/hints/openbsd.sh b/contrib/perl5/hints/openbsd.sh index 4c98ec8587a8..e9d8ea483d56 100644 --- a/contrib/perl5/hints/openbsd.sh +++ b/contrib/perl5/hints/openbsd.sh @@ -48,4 +48,14 @@ d_suidsafe='define' # Allow a command-line override, such as -Doptimize=-g test "$optimize" || optimize='-O2' +# This script UU/usethreads.cbu will get 'called-back' by Configure +# after it has prompted the user for whether to use threads. +cat > UU/usethreads.cbu <<'EOCBU' +case "$usethreads" in +$define|true|[yY]*) + # any openbsd version dependencies with pthreads? + libswanted="$libswanted pthread" +esac +EOCBU + # end |