In message <541b4ba4.6060...@higonnet.net>, "Bernard T. Higonnet" writes: >Can someone indicate a version of the following that work > >Apache 2.2.x >perl 5.x >mod_perl 2.0.x > >all under FreeBSD 10.0-RELEASE #0
Install gcc47 and build them each from source. $ cd http-2.2.29 $ env CC=gcc47 ./configure --enable-ssl --enable-proxy \ --enable-rewrite --enable-modules=all --enable-mods-shared=all \ --with-included-apr --prefix=/opt/apache2 $ cd perl-5.20.1 $ ./Configure -Dprefix=/opt/apache2/perl-5.20.1 -Dcc=gcc47 -Duseshrplib \ -Uusemymalc -Duselargefiles -Ubincompat5005 -Duse64bitall $ cd mod_perl-2.0.8 $ env PATH=/opt/apache2/perl-5.20.1/bin:/opt/apache2/bin:${PATH} \ perl Makefile.PL MP_APXS=/opt/apache2/bin/apxs John groenv...@acm.org