At 18:43 17/08/2006 -0700, chromatic wrote:
Hi there,
Here's a patch for Build.PL that should avoid most of the pkg_config troubles
on platforms that don't have it. I still don't quite know what to do on
Windows when installing from outside of the Parrot tree.
1) in get_parrot_path_external(), the split of PATH is not portable,
File::Spec gives a solution :
for my $path ( File::Spec->path() )
2) consider the use of File::Which instead of get_parrot_path_external
use File::Which;
...
return which('parrot');
François.
-- c