summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorArtur Bergman <sky@nanisky.com>2001-06-09 23:03:51 +0200
committerJarkko Hietaniemi <jhi@iki.fi>2001-06-10 01:23:59 +0000
commitb00ec89b8b3e208d96fee2dc79a984083fc0a295 (patch)
tree57a98ebf317b419c6a12e91efbd54477a696c3da /Configure
parent7ccbce428aaca1dc21044842262a289e8abf8ad4 (diff)
downloadperl-b00ec89b8b3e208d96fee2dc79a984083fc0a295.tar.gz
Don't build Thread.pm if USEITHREADS
Message-ID: <B7483FB6.1398%artur@contiller.se> p4raw-id: //depot/perl@10492
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure9
1 files changed, 6 insertions, 3 deletions
diff --git a/Configure b/Configure
index 7ba331a1a0..f01329ff9e 100755
--- a/Configure
+++ b/Configure
@@ -20,7 +20,7 @@
# $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $
#
-# Generated on Fri Jun 8 18:06:31 EET DST 2001 [metaconfig 3.0 PL70]
+# Generated on Sun Jun 10 05:21:37 EET DST 2001 [metaconfig 3.0 PL70]
# (with additional metaconfig patches by perlbug@perl.org)
cat >c1$$ <<EOF
@@ -15985,8 +15985,11 @@ for xxx in $known_extensions ; do
esac
;;
Thread|thread)
- case "$usethreads" in
- true|$define|y) avail_ext="$avail_ext $xxx" ;;
+ case "$usethreads" in
+ true|$define|y)
+ case "$useithreads" in
+ $undef|false|[nN]*) avail_ext="$avail_ext $xxx" ;;
+ esac
esac
;;
IPC/SysV|ipc/sysv)