in reply to ExtUtils::MakeMaker, APR::UUID or Perl problem?
Since it seems there's no problem with APR in stand-alone mode, it would be good to narrow down why it's interfering with WriteMakefile. A couple of simple possibilities come to mind that would be worth checking:
use APR; open(FH, '>test.txt') or die "Cannot open test.txt: $!\n"; print FH "This is some text\n"; close(FH);
use ExtUtils::MakeMaker; use APR; my $r = WriteMakefile( NAME => 'Handel', VERSION_FROM => 'lib/Handel.pm', AUTHOR => 'Christopher H. Laco', ABSTRACT => 'Simple ecommerce framework', ); for my $key (qw(NAME VERSION_FROM AUTHOR ABSTRACT)) { print "$key -> $r->{$key}\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: ExtUtils::MakeMaker, APR::UUID or Perl problem?
by jk2addict (Chaplain) on Dec 04, 2005 at 16:57 UTC | |
|
Re^2: ExtUtils::MakeMaker, APR::UUID or Perl problem?
by jk2addict (Chaplain) on Dec 04, 2005 at 17:51 UTC | |
by randyk (Parson) on Dec 04, 2005 at 18:43 UTC | |
by jk2addict (Chaplain) on Dec 04, 2005 at 18:49 UTC | |
by jk2addict (Chaplain) on Dec 04, 2005 at 19:26 UTC | |
by jk2addict (Chaplain) on Dec 04, 2005 at 20:23 UTC | |
by randyk (Parson) on Dec 05, 2005 at 04:49 UTC |