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

jerry gay jerry.gay at gmail.com
Tue Aug 25 21:46:52 UTC 2009


On Tue, Aug 25, 2009 at 14:38, <cotto at svn.parrot.org> wrote:
> 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');
>
> _______________________________________________
> http://lists.parrot.org/mailman/listinfo/parrot-commits
>
please test for word boundaries here.

~jerry


More information about the parrot-dev mailing list