I would like to append the fink library directory /sw/lib to the list of directories that are searched automatically when I am trying to build an app (openvpn in this particular instance) from the command line. As it stands, I have to remember to set a couple variables:
CPPFLAGS="-I/sw/include" LDFLAGS="-L/sw/lib" ./configure
because otherwise the library (in this case the LZO libraries) isn't found.
This should be simple - I know how to do it in Linux - but I can't seem to find the information for OS X; so I'd appreciate any guidance.
(In case anyone is wondering why I'm bothering, when there are packages available - I want to try out the latest beta.)
Thanks for your help!
CPPFLAGS="-I/sw/include" LDFLAGS="-L/sw/lib" ./configure
because otherwise the library (in this case the LZO libraries) isn't found.
This should be simple - I know how to do it in Linux - but I can't seem to find the information for OS X; so I'd appreciate any guidance.
(In case anyone is wondering why I'm bothering, when there are packages available - I want to try out the latest beta.)
Thanks for your help!