in reply to Re: Can/should I run an upgraded version of perl locally, on a shared web server where I don't have root?
in thread Can/should I run an upgraded version of perl locally, on a shared web server where I don't have root?

Thanks Podmaster. I see now the problem is 5.8.0 on redhat, something I probably should have mentioned in the initial post. This is the first time I've had such an involved install in a unix environment.

From the makefile:

### there's issues with redhat 9.0's stock perl -- they applied some ### custom patches on their 5.8.0 and it breaks use constant a => sub +{}; if( $^O eq 'linux' and -e '/etc/redhat-release' and $] == '5.008' and (grep /Red Hat, Inc/, values %Config::Config) ) { print loc(" ### IMPORTANT! ###################################################### You are using perl $] supplied by RedHat, who have applied custom patches that break various perl modules, including this one. You will have to migrate to a perl without these flaws. You could do this for example by building a perl installation by hand. You can obtain the sources from www.cpan.org. We're sorry for the inconvenience. ##################################################################### ") . $/; require 5.008001; }
I wonder if this will cause other problems that would leave me better off developing somewhere else if the hosters won't upgrade, or if it's no big deal. (For all I know there could be other problems with a fresher version.) For now I am going to try installing catalyst without cpanplus.
  • Comment on Re^2: Can/should I run an upgraded version of perl locally, on a shared web server where I don't have root?
  • Download Code