[svn:parrot] r40791 - branches/pluggable_runcore/config/init/hints

cotto at svn.parrot.org cotto at svn.parrot.org
Tue Aug 25 21:38:43 UTC 2009


Author: cotto
Date: Tue Aug 25 21:38:42 2009
New Revision: 40791
URL: https://trac.parrot.org/parrot/changeset/40791

Log:
[configure] add hints to add -lrt to the libs on Linux courtesy of darbelo++

Modified:
   branches/pluggable_runcore/config/init/hints/linux.pm

Modified: branches/pluggable_runcore/config/init/hints/linux.pm
==============================================================================
--- branches/pluggable_runcore/config/init/hints/linux.pm	Tue Aug 25 20:48:27 2009	(r40790)
+++ branches/pluggable_runcore/config/init/hints/linux.pm	Tue Aug 25 21:38:42 2009	(r40791)
@@ -26,6 +26,9 @@
     if ( $libs !~ /-lpthread/ ) {
         $libs .= ' -lpthread';
     }
+    if ( $libs !~ /-lrt/ ) {
+        $libs .= ' -lrt';
+    }
     my $ld_share_flags = $conf->data->get('ld_share_flags');
     my $cc_shared      = $conf->data->get('cc_shared');
 


More information about the parrot-commits mailing list