On 25 Aug 2010, at 21:59, Refr Bruhl wrote:
What OS is this on?
Red Hat Enterprise Linux.
AIX uses a LIBPATH variable for paths to search for libraries. I think in linux its the LD_PATH or LD_LIB_PATH
It's not necessary in this case, the files he needs are simply not yet installed. I guess you are thinking of LD_LIBRARY_PATH, but that one is only used by the dynamic linker to search for libraries when starting a program, not by the static linker when compiling a program (for the latter, you simply use the -L command line option to add directories to the search path).
Jonas