summaryrefslogtreecommitdiff
path: root/configpm
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2004-05-06 15:43:41 +0000
committerNicholas Clark <nick@ccl4.org>2004-05-06 15:43:41 +0000
commit179068249232068654e49ef47e8dea560a72c573 (patch)
tree4cc1583bc0cba08aee88faee24cc3268f6595030 /configpm
parent374a03781dc07d0b6ae0554760455bebb681ab1c (diff)
downloadperl-179068249232068654e49ef47e8dea560a72c573.tar.gz
Integrate:
[ 22681] find2perl should not default to -print when -eval is specified. Noticed by David Dyck. [ 22733] Missing copyright in the README. [ 22735] Subject: [PATCH] Where to find nmake for windows From: Abe Timmerman <abe@ztreet.demon.nl> Date: Thu, 22 Apr 2004 23:57:40 +0200 Message-Id: <200404222357.40508.abe@ztreet.demon.nl> Changed download URL references for nmake [ 22747] Subject: [perl #29033] typo in description of sleep in documentation of POSIX module Date: 21 Apr 2004 11:07:22 -0000 From: "bob@starlabs.net (via RT)" <perlbug-followup@perl.org> Message-ID: <rt-3.0.8-29033-85811.17.0452776199501@perl.org> [ 22748] Subject: [PATCH] Add diagnostics section to base.pm From: "Jos I. Boumans" <kane@dwim.org> Date: Wed, 28 Apr 2004 13:04:47 +0200 Message-Id: <DC9B4A9C-9903-11D8-BA95-000A956B0E06@dwim.org> [ 22749] Fix for [perl #28963]: find2perl was sometimes generating invalid code. [ 22768] It seems daft to me that we have a synopis example that will fail if gcc happened to be invoked via the name cc, and completely ignores the far more reliable 'gccversion' variable So here's one using 'usethreads' that ought to work everywhere. [ 22782] Subject: Problem with h2xs From: David Cannings <lists@edeca.net> Date: Mon, 3 May 2004 13:44:33 +0100 Message-Id: <200405031344.33723.lists@edeca.net> (Second patch only) [ 22789] Subject: Problem with system() on Win9x and command.com (perl 5.8.x-5.9.x) From: bilbo@ua.fm Date: Wed, 28 Apr 2004 00:19:55 +0300 Message-ID: <611491036.20040428001955@ua.fm> [ 22793] Add a small script to check whether a perl source tree (with or without generated files) is friendly with case-insensitive filesystems. Adapted from : Subject: Re: STerm.pl vs Sterm.pl From: James Mastros <james@mastros.biz> Date: Thu, 06 May 2004 14:45:53 +0200 Message-ID: <20040506124556.2402.qmail@onion.perl.org> p4raw-link: @22793 on //depot/perl: 772ab6503ff18dfd6856d3c039bc0c327944f3f1 p4raw-link: @22789 on //depot/perl: 96090bfdf053854d56ae5c45fcf6eef606782969 p4raw-link: @22782 on //depot/perl: 5db8a8c21bcc6e67c574b01a4256f79c5e4aab89 p4raw-link: @22768 on //depot/perl: 63f18be62c0fc11b05936631f648c4dd5ea77236 p4raw-link: @22749 on //depot/perl: 178eb895c5deb67bb37c347449d4e8f3288b8b7e p4raw-link: @22748 on //depot/perl: 36c726b39493413b3d290022ea8659549c919762 p4raw-link: @22747 on //depot/perl: 66e2fd5444a96049971bab49da0a163e8fa5e52d p4raw-link: @22735 on //depot/perl: cb9857f106f375812b55d206c492443ff99b6085 p4raw-link: @22733 on //depot/perl: 766b36a4cf5981b911f14f15b05838d0b85a3b73 p4raw-link: @22681 on //depot/perl: a9a4ee8b12bbb03d4563807d9b09f3f7262a7701 p4raw-id: //depot/maint-5.8/perl@22794 p4raw-branched: from //depot/perl@22792 'branch in' Porting/checkcase.pl p4raw-integrated: from //depot/perl@22792 'copy in' README (@19242..) pod/perlmodinstall.pod (@20588..) configpm (@21732..) ext/POSIX/POSIX.pod (@22258..) utils/h2xs.PL (@22322..) lib/base.pm (@22642..) 'merge in' README.win32 (@22556..) win32/win32.c (@22691..) MANIFEST (@22783..) p4raw-integrated: from //depot/perl@22681 'ignore' x2p/find2perl.PL (@22586..)
Diffstat (limited to 'configpm')
-rwxr-xr-xconfigpm4
1 files changed, 2 insertions, 2 deletions
diff --git a/configpm b/configpm
index f232c9b4ed..d3d15eec22 100755
--- a/configpm
+++ b/configpm
@@ -435,8 +435,8 @@ Config - access Perl configuration information
=head1 SYNOPSIS
use Config;
- if ($Config{'cc'} =~ /gcc/) {
- print "built by gcc\n";
+ if ($Config{usethreads}) {
+ print "has thread support\n"
}
use Config qw(myconfig config_sh config_vars config_re);