[Codestriker-commits] CVS update: codestriker CHANGELOG
Brought to you by:
sits
From: <si...@us...> - 2008-07-10 10:43:59
|
User: sits Date: 08/07/10 03:43:55 Modified: bin codestriker.pl.base install.pl . CHANGELOG Log: * Fix for "v-string in use/require non-portable" warning when using Perl 5.10 from rob...@us.... Index: codestriker.pl.base =================================================================== RCS file: /cvsroot/codestriker/codestriker/bin/codestriker.pl.base,v retrieving revision 1.25 retrieving revision 1.26 diff -u -r1.25 -r1.26 --- codestriker.pl.base 22 Feb 2008 00:32:00 -0000 1.25 +++ codestriker.pl.base 10 Jul 2008 10:43:55 -0000 1.26 @@ -12,13 +12,13 @@ # This is the top level package which receives all HTTP requests, and # delegates it to the appropriate Action module. -require 5.8.0; +require 5.008_0; # Set this to the location of the Codestriker libraries on your system. # Ideally, this should be done in the apache configs, but trying to do this # in an easy way for Apache1/Apache2 with/without mod_perl with/without taint # checking turned out to be a major headache. For mod_perl, setting this -# ensures the first time Codestiker is loaded, it can be compiled properly, +# ensures the first time Codestriker is loaded, it can be compiled properly, # even if @INC is blatted later. Also note all the use declarations below # effectively "pre-load" all of the Codestriker modules in the system, as the # modules below load all of their supporting modules. That is why the Index: install.pl =================================================================== RCS file: /cvsroot/codestriker/codestriker/bin/install.pl,v retrieving revision 1.18 retrieving revision 1.19 diff -u -r1.18 -r1.19 --- install.pl 17 Jun 2008 12:00:54 -0000 1.18 +++ install.pl 10 Jul 2008 10:43:55 -0000 1.19 @@ -24,7 +24,7 @@ use Config; use lib '../lib'; -require 5.8.0; +require 5.008_0; # Now load up the required modules. Do this is a lazy fashion so that Perl # doesn't try to grab this during compile time, otherwise nasty-looking Index: CHANGELOG =================================================================== RCS file: /cvsroot/codestriker/codestriker/CHANGELOG,v retrieving revision 1.241 retrieving revision 1.242 diff -u -r1.241 -r1.242 --- CHANGELOG 7 Jul 2008 23:11:33 -0000 1.241 +++ CHANGELOG 10 Jul 2008 10:43:55 -0000 1.242 @@ -6,6 +6,9 @@ * "Default to head" option for CVS topic creation was not used when selected, but when it was unselected. This has now been fixed. Spotted by mn...@us.... + +* Fix for "v-string in use/require non-portable" warning when using + Perl 5.10 from rob...@us.... Version 1.9.5 |