From 97404f98a6349e3129d8b12b25786316a12e66dc Mon Sep 17 00:00:00 2001 From: Gurusamy Sarathy Date: Sun, 9 Jan 2000 19:05:33 +0000 Subject: [PATCH] s/usethreads/use5005threads/g p4raw-id: //depot/perl@4772 --- myconfig.SH | 5 +++-- t/lib/english.t | 2 +- t/lib/thread.t | 4 ++-- t/op/nothread.t | 2 +- 4 files changed, 7 insertions(+), 6 deletions(-) diff --git a/myconfig.SH b/myconfig.SH index 83de2fa..dc76e73 100644 --- a/myconfig.SH +++ b/myconfig.SH @@ -33,8 +33,9 @@ Summary of my $package (revision $baserev version $PERL_VERSION subversion $PERL uname='$myuname' config_args='$config_args' hint=$hint, useposix=$useposix, d_sigaction=$d_sigaction - usethreads=$usethreads useperlio=$useperlio d_sfio=$d_sfio - use64bits=$use64bits usemultiplicity=$usemultiplicity + usethreads=$usethreads use5005threads=$use5005threads useithreads=$useithreads + usesocks=$usesocks useperlio=$useperlio d_sfio=$d_sfio + use64bits=$use64bits uselargefiles=$uselargefiles usemultiplicity=$usemultiplicity Compiler: cc='$cc', optimize='$optimize', gccversion=$gccversion cppflags='$cppflags' diff --git a/t/lib/english.t b/t/lib/english.t index 2ee6133..dba68db 100755 --- a/t/lib/english.t +++ b/t/lib/english.t @@ -5,7 +5,7 @@ print "1..16\n"; BEGIN { unshift @INC, '../lib' } use English; use Config; -my $threads = $Config{'usethreads'} || 0; +my $threads = $Config{'use5005threads'} || 0; print $PID == $$ ? "ok 1\n" : "not ok 1\n"; diff --git a/t/lib/thread.t b/t/lib/thread.t index 6c25407..1eeecad 100755 --- a/t/lib/thread.t +++ b/t/lib/thread.t @@ -4,8 +4,8 @@ BEGIN { chdir 't' if -d 't'; unshift @INC, '../lib'; require Config; import Config; - if (! $Config{'usethreads'}) { - print "1..0 # Skip: this perl is not threaded\n"; + if (! $Config{'use5005threads'}) { + print "1..0 # Skip: not use5005threads\n"; exit 0; } diff --git a/t/op/nothread.t b/t/op/nothread.t index a434956..fd36e2e 100755 --- a/t/op/nothread.t +++ b/t/op/nothread.t @@ -9,7 +9,7 @@ BEGIN unshift @INC, "../lib"; require Config; import Config; - if ($Config{'usethreads'}) + if ($Config{'use5005threads'}) { print "1..0 # Skip: this perl is threaded\n"; exit 0; -- 1.8.3.1