[svn:parrot] r41021 - trunk/config/inter
dukeleto at svn.parrot.org
dukeleto at svn.parrot.org
Sat Sep 5 23:53:53 UTC 2009
Author: dukeleto
Date: Sat Sep 5 23:53:52 2009
New Revision: 41021
URL: https://trac.parrot.org/parrot/changeset/41021
Log:
[build] Teach config/inter/libparrot.pm about darwin so that people get properly warned about having an installed parrot
Modified:
trunk/config/inter/libparrot.pm
Modified: trunk/config/inter/libparrot.pm
==============================================================================
--- trunk/config/inter/libparrot.pm Sat Sep 5 23:03:14 2009 (r41020)
+++ trunk/config/inter/libparrot.pm Sat Sep 5 23:53:52 2009 (r41021)
@@ -56,6 +56,9 @@
if ($^O eq 'cygwin') {
@libs = ('libparrot.dll.a');
}
+ if ($^O eq 'darwin' {
+ @libs = qw/libparrot.dylib libparrot.a/;
+ }
if (defined $ENV{LD_LIBRARY_PATH}) {
push @libpaths, (split /:/, $ENV{LD_LIBRARY_PATH});
}
More information about the parrot-commits
mailing list