AShved@symcor.com wrote:
> I have ./postgres/8.3-community/lib/64/libpq.so.5 so how do i make it use
> it.
>
assuming you're using sh/ksh/bash and not csh, in the script thats
launching your application, or in your account ~/.profile ...
export LD_LIBRARY_PATH;
LD_LIBRARY_PATH=/path/to/postgres/8.3-community/lib/64:$LD_LIBRARY_PATH
....run.the.rest.of.your.stuff....
csh uses setenv or something instead.