On Mon, 12 Aug 2002, Goehring, Chuck Mr., RCI - San Diego wrote:

> Randy,
> 
> I'm using Perl 5.6.0 for this. Should I be using 5.8.0?  Does
> that affect ModuleConfig.c?
> 
> Having problems running things with the version I put out last
> week.  It complains about the dumbest things and is overly
> strict.
> 
> Thanks
> Chuck

I'm not sure if this will help, but an error you had in an
earlier message for 'perl Makefile.PL' indicated you didn't have
touch() on your system (which is typical for Win32). You might
want to try the attached patch to Makefile.PL, which uses a perl
command for touch().

-- 
best regards,
randy
Index: Makefile.PL
===================================================================
RCS file: /home/cvspublic/modperl/Makefile.PL,v
retrieving revision 1.204
diff -u -r1.204 Makefile.PL
--- Makefile.PL 19 Jun 2002 16:31:52 -0000      1.204
+++ Makefile.PL 15 Aug 2002 05:48:46 -0000
@@ -1600,7 +1600,10 @@
        my $to = '$(INST_ARCHLIB)/' . "auto/Apache/include/$_";
        unless ($self->{PM}->{$from}) {
            $self->{PM}->{$from} = $to;
-           system "$Config{touch} $from";
+            my @args = ($Config{perlpath}, '-MExtUtils::Command', '-e', 'touch', 
+$from);
+            system(@args) == 0
+              or die "system @args failed: $?";
+#            system "$Config{touch} $from";
        }
     }
 

Reply via email to