diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2000-01-09 19:05:33 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2000-01-09 19:05:33 +0000 |
commit | 97404f98a6349e3129d8b12b25786316a12e66dc (patch) | |
tree | dd715d9e9b7fa74a082ac8c27034014711b3c1f0 | |
parent | aaacdc8b9b7d69c04e33245ec8de73f4e74bbd69 (diff) | |
download | perl-97404f98a6349e3129d8b12b25786316a12e66dc.tar.gz |
s/usethreads/use5005threads/g
p4raw-id: //depot/perl@4772
-rw-r--r-- | myconfig.SH | 5 | ||||
-rwxr-xr-x | t/lib/english.t | 2 | ||||
-rwxr-xr-x | t/lib/thread.t | 4 | ||||
-rwxr-xr-x | t/op/nothread.t | 2 |
4 files changed, 7 insertions, 6 deletions
diff --git a/myconfig.SH b/myconfig.SH index 83de2faeca..dc76e73175 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 2ee613352b..dba68dbf94 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 6c25407853..1eeecad6f1 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 a434956cb0..fd36e2e89a 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; |