User: sits Date: 06/05/22 04:39:40 Modified: bin codestriker.pl.base install.pl Log: Commit to using Perl 5.8 - its the only way to get half-decent unicode support Index: codestriker.pl.base =================================================================== RCS file: /cvsroot/codestriker/codestriker/bin/codestriker.pl.base,v retrieving revision 1.21 retrieving revision 1.22 diff -u -r1.21 -r1.22 --- codestriker.pl.base 22 May 2006 11:34:16 -0000 1.21 +++ codestriker.pl.base 22 May 2006 11:39:39 -0000 1.22 @@ -12,7 +12,7 @@ # This is the top level package which receives all HTTP requests, and # delegates it to the appropriate Action module. -require 5.000; +require 5.8.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 @@ -81,7 +81,7 @@ } # Make sure the STDOUT encoding is set to UTF8. -# binmode STDOUT, ':utf8'; +binmode STDOUT, ':utf8'; # Prototypes of subroutines used in this module. sub main(); Index: install.pl =================================================================== RCS file: /cvsroot/codestriker/codestriker/bin/install.pl,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- install.pl 22 May 2006 11:34:16 -0000 1.4 +++ install.pl 22 May 2006 11:39:39 -0000 1.5 @@ -24,6 +24,8 @@ use Config; use lib '../lib'; +require 5.8.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 # error messages will appear to the user.
------------------------------------------------------- Using Tomcat but need to do more? Need to support web services, security? Get stuff done quickly with pre-integrated technology to make your job easier Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642 _______________________________________________ Codestriker-commits mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/codestriker-commits
