7 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 
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] authlib 0.58 compile errorActions...
From:Bill Taroli (bill@billsden.org)
Date:Apr 24, 2006 11:23:38 pm
List:net.sourceforge.lists.courier-users

Gordon Thagard wrote:

gcc 3.4.2 solaris 9 courier-authlib 0.58

Hi, I'm getting a an error trying to compile authlib. Has anybody seen this?

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>