8 messages in net.sourceforge.lists.courier-usersRe: [courier-users] Courier-IMAP on S...
FromSent OnAttachments
Joakim BomelinDec 19, 2000 7:46 am 
Tabor J. WellsDec 19, 2000 8:14 am 
Joakim BomelinDec 19, 2000 8:21 am 
jhen...@bogon.comDec 19, 2000 11:59 am 
Joakim BomelinDec 20, 2000 1:58 am 
Robbert HeederikDec 20, 2000 2:29 am 
jhen...@bogon.comDec 20, 2000 4:15 am 
Joakim BomelinDec 20, 2000 4:26 am 
Actions with this message:
Paste this link in email or IM:
Paste this link in email or IM:
Atom feed for this thread
Paste this URL into your reader:
Subject:Re: [courier-users] Courier-IMAP on SolarisActions...
From:jhen...@bogon.com (jhen@bogon.com)
Date:Dec 19, 2000 11:59:08 am
List:net.sourceforge.lists.courier-users

On Tue, Dec 19/00, Joakim Bomelin <joak@framfablabs.com> wrote:

Have imapd.rc echo LD_LIBRARY_PATH to see what path it's looking for your libraries in. I suspect it doesn't include /usr/local/lib

I have now added

LD_LIBRARY_PATH="/usr/local/lib" export LD_LIBRARY_PATH

to imapd.rc, but I still get the same error message. This is NOT what I need right now ;-)

It's odd, that should work. What happens if you symlink libgdbm into /usr/lib? What I usually do instead of messing with LD_LIBRARY_PATH in startup scripts is to force the -R linker flag with env when I run configure before building stuff that needs librarys outside of the standard search path. i.e.

env CPPFLAGS="-I/usr/local/include" LDFLAGS="-L/usr/local/lib -R/usr/local/include" ./configure --various args

This is definately one place where I prefer linux's ld.so.conf method of managing library paths.

Does anyone know if there's a way of getting extra environment variables into init's environment space before it starts running.