Wood, Bryan wrote:
The perl framework. I'm having a lot of difficulty getting it to run with my
own apache 2.0 server. Actually it doesn't get passed the compile.

[EMAIL PROTECTED]:~/httpd-test/perl-framework# make
make: *** Warning: File `Makefile.PL' has modification time in the future
(2001-12-31 09:09:43 > 1970-01-01 02:36:50)

Looks like your machine's clock is set to 1970!

Makefile out-of-date with respect to Makefile.PL
/usr/lib/perl/5.6.1/Config.pm /usr/lib/perl/5.6.1/CORE/config.h
Cleaning current config before rebuilding Makefile...
make -f Makefile.old clean > /dev/null 2>&1 || /bin/sh -c true
/usr/bin/perl "-I/usr/lib/perl/5.6.1" "-I/usr/share/perl/5.6.1" Makefile.PL generating script ./t/htdocs/modules/rewrite/db.pl
APXS (/usr/sbin/apxs) query for SBINDIR failed
APXS (/usr/sbin/apxs) query for TARGET failed
APXS (/usr/sbin/apxs) query for SYSCONFDIR failed
generating script ./t/htdocs/modules/rewrite/numbers.pl
generating script ./t/htdocs/modules/rewrite/numbers2.pl
generating script ./t/htdocs/modules/cgi/bogus-perl.pl
generating script ./t/htdocs/modules/cgi/bogus1k.pl
generating script ./t/htdocs/modules/cgi/env.pl
generating script ./t/htdocs/modules/cgi/perl.pl
generating script ./t/htdocs/modules/cgi/perl_echo.pl
generating script ./t/conf/ssl/httpd-passphrase.pl
generating script t/TEST
Writing Makefile for Apache::Test
Writing Makefile for httpd-test
APXS (/usr/sbin/apxs) query for SBINDIR failed
APXS (/usr/sbin/apxs) query for TARGET failed
APXS (/usr/sbin/apxs) query for SYSCONFDIR failed
==> Your Makefile has been rebuilt. <==
==> Please rerun the make command. <==
false
make: *** [Makefile] Error 1
[EMAIL PROTECTED]:~/httpd-test/perl-framework#





anyone know what to do in that situation ? it says the same thing everytime I rerun the make command.

try:

perl Makefile.PL -apxs /path/to/apxs
make
make test

if you really want to sync all your files back to 1970, you could do:

cd perl-framework
find . -exec touch {} \;

__________________________________________________________________
Stas Bekman            JAm_pH ------> Just Another mod_perl Hacker
http://stason.org/     mod_perl Guide ---> http://perl.apache.org
mailto:[EMAIL PROTECTED] http://use.perl.org http://apacheweek.com
http://modperlbook.org http://apache.org   http://ticketmaster.com



Reply via email to