in reply to Re^4: XML::LibXSLT on OS X install problem
in thread XML::LibXSLT on OS X install problem
I know exactly what that's like. This really clever, handy install tool says "Try setting LIBS and INC values on the command line", and... okay, how is that done, exactly? Um...
Well, I did find it -- it's tucked away in some nook of Makefile.PL, in a code block that you somehow failed to trigger. Given that you know where the library (libxml*) and include files (*.h) are, you do this in the build directory:
That should do it. (I hope)perl Makefile.PL LIBS='-L/path/to/lib' INC='-I/path/to/include'
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^6: XML::LibXSLT on OS X install problem
by alienhuman (Pilgrim) on Feb 07, 2006 at 04:46 UTC | |
by graff (Chancellor) on Feb 07, 2006 at 05:33 UTC | |
by alienhuman (Pilgrim) on Feb 07, 2006 at 17:06 UTC |