I'm installing AxKit on a fresh OS X (my new computer) now and I've got the old iconv problem again. This time around I *think* I have more knowledge than last time, so I did a perl Makefile.PL DEBUG=1 and noticed that /sw/lib isn't being included in the library search directories. So I googled and found advice to try these forms:
It looks like you've been using fink. That's what I hate about those stupid package manager things, they never do stuff the way it's done on one's box. Not even on OS X where all the boxes have the same setup.
eval {
print "running xml2-config... ";
- my $libs = backtick('xml2-config --libs');
+ my $libs = backtick('xml2-config --libs') . " -L/sw/lib";
$config{LIBS} .= " $libs" if $libs;
- my $inc = backtick('xml2-config --cflags');
+ my $inc = backtick('xml2-config --cflags') . " -I/sw/include";
$config{INC} .= " $inc" if $inc;
print "ok\n";
};
It's a hack I'm afraid (but hey, whatever gets AxKit to install...). Passing the right options on the command line should have ended those directories in $config{LIBS,INC}. Either there's a bug in the Makefile.PL, or you've mispassed an option.
-- Robin Berjon <[EMAIL PROTECTED]> Research Engineer, Expway http://expway.fr/ 7FC0 6F5F D864 EFB8 08CE 8E74 58E6 D5DB 4889 2488
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
