Author: jhorwitz
Date: Fri Jul 25 11:39:01 2008
New Revision: 390
Modified:
mod_parrot/branches/configure/config/probe/apache.pm
mod_parrot/branches/configure/config/probe/parrot.pm
Log:
add missing compiler and linker flags
Modified: mod_parrot/branches/configure/config/probe/apache.pm
==============================================================================
--- mod_parrot/branches/configure/config/probe/apache.pm (original)
+++ mod_parrot/branches/configure/config/probe/apache.pm Fri Jul 25 11:39:01 2008
@@ -58,7 +58,7 @@
mpm_is_threaded => mpm_is_threaded( $conf->data->get('mpm') ),
);
- my $cflags = $conf->data->get('parrot_build_dir') . '/include -Iinclude';
+ my $cflags = '-I' . $conf->data->get('parrot_build_dir') . '/include -Iinclude';
$cflags .= ' -DMPM_IS_THREADED'
if $conf->data->get('mpm_is_threaded');
Modified: mod_parrot/branches/configure/config/probe/parrot.pm
==============================================================================
--- mod_parrot/branches/configure/config/probe/parrot.pm (original)
+++ mod_parrot/branches/configure/config/probe/parrot.pm Fri Jul 25 11:39:01 2008
@@ -49,7 +49,7 @@
);
$conf->data->set( ldflags =>
- $conf->data->get('parrot_build_dir')
+ '-L' . $conf->data->get('parrot_build_dir')
. '/' . $conf->data->get('blib_dir')
);