develooper Front page | perl.cvs.mod_parrot | Postings from July 2008

[svn:mod_parrot] r390 - mod_parrot/branches/configure/config/probe

From:
jhorwitz
Date:
July 25, 2008 11:39
Subject:
[svn:mod_parrot] r390 - mod_parrot/branches/configure/config/probe
Message ID:
20080725183901.CF9F8CB9B2@x12.develooper.com
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')
     );
 



nntp.perl.org: Perl Programming lists via nntp and http.
Comments to Ask Bjørn Hansen at ask@perl.org | Group listing | About