Re: port building & linking

2006-05-07 Thread martinko

martinko wrote:

Reko Turja wrote:
speaking of cyrus, i've recently spotted new entry in my passwd and 
have been wondering where/when did it get there.. ??

of course i don't know of installing anything called cyrus..



If you have installed CMU sasl, that does add "cyrus" user as  well.

-Reko







i'm not aware of it. it might have been installed as a dependency, 
though, i guess.


cheers,

m.



aahh.. mail-notification is the culprit ;-)
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: port building & linking

2006-05-07 Thread martinko

Reko Turja wrote:
speaking of cyrus, i've recently spotted new entry in my passwd and 
have been wondering where/when did it get there.. ??

of course i don't know of installing anything called cyrus..



If you have installed CMU sasl, that does add "cyrus" user as  well.

-Reko







i'm not aware of it. it might have been installed as a dependency, 
though, i guess.


cheers,

m.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: port building & linking

2006-05-07 Thread Reko Turja
speaking of cyrus, i've recently spotted new entry in my passwd and 
have been wondering where/when did it get there.. ??

of course i don't know of installing anything called cyrus..



If you have installed CMU sasl, that does add "cyrus" user as  well.

-Reko 


___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: port building & linking

2006-05-07 Thread martinko

Andrew Pantyukhin wrote:

On 4/21/06, ph rhole oper <[EMAIL PROTECTED]> wrote:

I need to build a port (mail/cyrus-imapd23) and add support for the
mit-kerberos implementation to it.
It needs to link to the -lkrb5 library.There are two libkrb5*.so in my
system:
the heimdal one (/usr/lib/libkrb5*.so) and the mit one
(/usr/local/lib/libkrb5*.so).
The configure script, searching for -lkrb5, finds /usr/lib/libkrb5.so
first, and links to the heimdal implementation.
Is there any way i can force it to only link against
/usr/local/lib/libkrb5.so?I need the mit implementation.


simon.

--
http://www.fastmail.fm - Access your email from home and the web

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"



Are you talking about cyrus-imapd or cyrus-sasl? cyrus-sasl
has some options in its Makefile, like KRB5_HOME.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"



speaking of cyrus, i've recently spotted new entry in my passwd and have 
been wondering where/when did it get there.. ??

of course i don't know of installing anything called cyrus..

m.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: port building & linking

2006-04-22 Thread ph rhole oper

On Sat, 22 Apr 2006 20:26:28 +0400, "Andrew Pantyukhin"
<[EMAIL PROTECTED]> said:
> On 4/21/06, ph rhole oper <[EMAIL PROTECTED]> wrote:
> > I need to build a port (mail/cyrus-imapd23) and add support for the
> > mit-kerberos implementation to it.
> > It needs to link to the -lkrb5 library.There are two libkrb5*.so in my
> > system:
> > the heimdal one (/usr/lib/libkrb5*.so) and the mit one
> > (/usr/local/lib/libkrb5*.so).
> > The configure script, searching for -lkrb5, finds /usr/lib/libkrb5.so
> > first, and links to the heimdal implementation.
> > Is there any way i can force it to only link against
> > /usr/local/lib/libkrb5.so?I need the mit implementation.
> >
> >
> > simon.
> >
> > --
> > http://www.fastmail.fm - Access your email from home and the web
> >
> > ___
> > freebsd-questions@freebsd.org mailing list
> > http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> > To unsubscribe, send any mail to "[EMAIL PROTECTED]"
> >
> 
> Are you talking about cyrus-imapd or cyrus-sasl? cyrus-sasl
cyrus-imapd23
> has some options in its Makefile, like KRB5_HOME.
interesting option but i didnt see anything like this for cyrus-imapd.I
solved the problem with a rather drastic way though:
cd /usr/lib && for i in *krb5* *com_err* *gss*;do mv -v $i
heimdal.$i;done && ldconfig -R && export LDFLAGS="-L/usr/local/lib
-lkrb5 
-lkrb5support -lcom_err -lgssapi" && cd /usr/ports/cyrus-imapd23/ &&
make install
just temporarily to force it use the /usr/local/lib/* libraries.

simon.

-- 
http://www.fastmail.fm - Accessible with your email software
  or over the web

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


Re: port building & linking

2006-04-22 Thread Andrew Pantyukhin
On 4/21/06, ph rhole oper <[EMAIL PROTECTED]> wrote:
> I need to build a port (mail/cyrus-imapd23) and add support for the
> mit-kerberos implementation to it.
> It needs to link to the -lkrb5 library.There are two libkrb5*.so in my
> system:
> the heimdal one (/usr/lib/libkrb5*.so) and the mit one
> (/usr/local/lib/libkrb5*.so).
> The configure script, searching for -lkrb5, finds /usr/lib/libkrb5.so
> first, and links to the heimdal implementation.
> Is there any way i can force it to only link against
> /usr/local/lib/libkrb5.so?I need the mit implementation.
>
>
> simon.
>
> --
> http://www.fastmail.fm - Access your email from home and the web
>
> ___
> freebsd-questions@freebsd.org mailing list
> http://lists.freebsd.org/mailman/listinfo/freebsd-questions
> To unsubscribe, send any mail to "[EMAIL PROTECTED]"
>

Are you talking about cyrus-imapd or cyrus-sasl? cyrus-sasl
has some options in its Makefile, like KRB5_HOME.
___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"


port building & linking

2006-04-21 Thread ph rhole oper
I need to build a port (mail/cyrus-imapd23) and add support for the
mit-kerberos implementation to it.
It needs to link to the -lkrb5 library.There are two libkrb5*.so in my
system:
the heimdal one (/usr/lib/libkrb5*.so) and the mit one
(/usr/local/lib/libkrb5*.so).
The configure script, searching for -lkrb5, finds /usr/lib/libkrb5.so
first, and links to the heimdal implementation.
Is there any way i can force it to only link against
/usr/local/lib/libkrb5.so?I need the mit implementation.


simon.

-- 
http://www.fastmail.fm - Access your email from home and the web

___
freebsd-questions@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-questions
To unsubscribe, send any mail to "[EMAIL PROTECTED]"