atom feed7 messages in net.sourceforge.lists.courier-usersRe: [courier-users] authlib 0.58 comp...
FromSent OnAttachments
Gordon ThagardApr 24, 2006 8:01 am 
Sam VarshavchikApr 24, 2006 3:22 pm 
Bill TaroliApr 24, 2006 11:23 pm 
Gordon ThagardApr 25, 2006 7:48 am 
Bill TaroliApr 26, 2006 3:27 am 
Göran HöglundApr 27, 2006 4:42 am 
Bill TaroliApr 27, 2006 7:21 am 
Subject:Re: [courier-users] authlib 0.58 compile error
From:Gordon Thagard (gor@eng.fsu.edu)
Date:Apr 25, 2006 7:48:39 am
List:net.sourceforge.lists.courier-users

Well that did it. Thank you very much for your help.

Here are some cookbook instructions for the next victim:

mv /usr/ccs/bin/ld /usr/ccs/bin/ld.sun ln -s /usr/local/bin/ld /usr/ccs/bin/ld CCLD=/usr/local/bin/ld CXXLD=/usr/local/bin/ld LD=/usr/local/bin/ld export CCLD CXXLD LD

./configure make make install make install-configure

rm /usr/ccs/bin/ld mv /usr/ccs/bin/ld.sun /usr/ccs/bin/ld

Cheers,

Gordon

Bill Taroli wrote:

Oh goodness have I seen it. Gladly, with help from others, I haven't had a problem with it lately. Sam's suggestion about LD is right on. Be sure to install Gnu ld someplace (/usr/local/lib or similar). Also be sure to rename and link that installation to /usr/ccs/bin/ld -- there are some makefiles that don't honor these variables even when you set every possible on to your alternate ld. Once done, I use a script like the following, which I invoke as ". ./config.authlib" to ensure that the variables are set in the current shell env for the compilations after the configure.

export CCLD=/usr/local/bin/ld export CXXLD=/usr/local/bin/ld export LD=/usr/local/bin/ld

./configure <your options here... nothing specific to LD>