Perl
Table of contents
Install from source
perl Makefile.PL PERL_TABLE_API=1
Install from ports
cd /usr/ports/www/mod_perl2 make make install
Mason requirements (for projects)
/usr/ports/www/libapreq2 (WITH_MODPERL2=yes) /usr/ports/www/p5-Apache-Session /usr/ports/www/p5-Apache-Session-Wrapper /usr/ports/www/p5-CGI.pm /usr/ports/www/p5-HTML-Mason /usr/ports/databases/p5-DBD-mysql50 /usr/ports/databases/p5-DBI (req of DBD) /usr/ports/mail/p5-Mail-Sendmail /usr/ports/www/p5-MasonX-Request-WithApacheSession (2?) /usr/ports/devel/p5-Time-HiRes (req of MasonX) Time-Format
Also try CPAN if ports fail to have all of the above.
perl -MCPAN -e shell
Cygwin issue with locale
Problem / errorperl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LC_ALL = (unset),
LANG = "en"
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").Fix
export LC_CTYPE=en_US.UTF-8 export LC_ALL=en_US.UTF-8
