Hi Marco, > In particular, I followed the suggestions regarding the Makefile of > Text::Iconv that I found in the message > http://archive.develooper.com/[EMAIL PROTECTED]/msg04392.html, but that > didn't help (it didn't even help wrt to Text::Iconv, which still cannot > find the libiconv, despite the fact that I did get it via fink, and > that I do keep the fink stuff in /sw...) > > So, I was wondering if somebody did a succesful axpoint install, and, > in that case, what was the procedure (I have perl5.8.0 on Jaguar...)
Much to my own amazement I'd actually recorded the changes I made to install Text::Iconv. These are the two lines in the Makefile.PL that should allow it to find Fink's libiconv: 'LIBS' => ['-L/sw/lib -liconv'], # e.g., '-lm' 'INC' => '-I/sw/include', # e.g., '-I/usr/include/other' The "#e.g., '-lm'" hint in the file might not have been all that helpful in this case! Most of the rest of the dependencies are pretty much sorted these days: at least once you've got libxml2 and libxslt and have their perl wrappers installed (watch the version of XML::LibXML, as per earlier messages. It broke some time soon after 1.51 for Mac OS X). In short, yep, Axpoint is working fine on my 10.2.4 machine. Best of luck, Paul
