[svn:PHP-Sandwich] r1443 - PHP-Sandwich/trunk
[email protected] 31 Jul 2005 16:21:01 -0000
| Newsgroups | perl.php.sandwich.dev |
|---|---|
| Message-ID | <[email protected]> |
Author: theory
Date: Sun Jul 31 09:21:01 2005
New Revision: 1443
Modified:
PHP-Sandwich/trunk/Makefile.PL
Log:
How odd. Everything goes haywire without VERSION_FROM. I would have thought
that it would just work, but maybe not for XS modules...
Modified: PHP-Sandwich/trunk/Makefile.PL
==============================================================================
--- PHP-Sandwich/trunk/Makefile.PL (original)
+++ PHP-Sandwich/trunk/Makefile.PL Sun Jul 31 09:21:01 2005
@@ -20,13 +20,14 @@ my $inc = "-I" . catdir ($phpdir, 'inclu
my @ofiles = ('PHP.o', 'phpinterp.o', 'phpfuncs.o');
WriteMakefile(
- CCFLAGS => '-g',
- OBJECT => join(' ', @ofiles),
- NAME => 'PHP::Interpreter',
- LIBS => join(' ', @libs),
- LDDLFLAGS => join(' ', @lddlflags),
- INC => $inc,
- PREREQ_PM => {
+ CCFLAGS => '-g',
+ OBJECT => join(' ', @ofiles),
+ NAME => 'PHP::Interpreter',
+ LIBS => join(' ', @libs),
+ LDDLFLAGS => join(' ', @lddlflags),
+ INC => $inc,
+ VERSION_FROM => 'lib/PHP/Interpreter.pm',
+ PREREQ_PM => {
# Just required for testing.
Test::More => 0,
IO::File => 0