Re: Including UCD-SNMP support in Cyrus IMAPD

2003-01-10 Thread marc . bigler
: Sent by: Subject: Re: Including UCD-SNMP support in Cyrus IMAPD [EMAIL PROTECTED

Re: Including UCD-SNMP support in Cyrus IMAPD

2003-01-10 Thread Igor Brezac
Igor Brezac To: [EMAIL PROTECTED] [EMAIL PROTECTED] cc: Sent by: Subject: Re: Including UCD-SNMP support in Cyrus IMAPD [EMAIL PROTECTED

Re: Including UCD-SNMP support in Cyrus IMAPD

2003-01-09 Thread marc . bigler
] Sent by: Subject: Re: Including UCD-SNMP support in Cyrus IMAPD [EMAIL PROTECTED

Re: Including UCD-SNMP support in Cyrus IMAPD

2003-01-08 Thread marc . bigler
] [EMAIL PROTECTED] cc: t Subject: Re: Including UCD-SNMP support in Cyrus IMAPD

Re: Including UCD-SNMP support in Cyrus IMAPD

2003-01-08 Thread Igor Brezac
Subject: Re: Including UCD-SNMP support in Cyrus IMAPD 01/06/03 09:30 PM Please respond to info-cyrus On Mon, 6 Jan 2003 [EMAIL PROTECTED] wrote: Hi there, You are right, an ldd

Re: Including UCD-SNMP support in Cyrus IMAPD

2003-01-08 Thread marc . bigler
library is also included in it. How can I check that ? Regards Marc Igor Brezac To: [EMAIL PROTECTED] [EMAIL PROTECTED] cc: t Subject: Re: Including UCD-SNMP support in Cyrus IMAPD

Re: Including UCD-SNMP support in Cyrus IMAPD

2003-01-08 Thread Igor Brezac
On Wed, 8 Jan 2003 [EMAIL PROTECTED] wrote: I must have mis-understood you. You need to use this option to compile cyrus-imapd. -Wl,-zignore will ignore libraries not referenced by the link process. If you want to fix UCD-SNMP libs, you need to pass -Wl,-zdefs to LDFLAGS and then

Re: Including UCD-SNMP support in Cyrus IMAPD

2003-01-06 Thread Lawrence Greenfield
--On Sunday, January 05, 2003 7:22 PM +0100 [EMAIL PROTECTED] wrote: Try, LIBS=-lkstat -lkvm ./configure ... I now had a try and it finally compiled perfectly ! Now, is that somehow normal that I need to do that, shouldn't this be automatically done with the configure script ? UCD SNMP can

Re: Including UCD-SNMP support in Cyrus IMAPD

2003-01-05 Thread marc . bigler
Try, LIBS=-lkstat -lkvm ./configure ... I now had a try and it finally compiled perfectly ! Now, is that somehow normal that I need to do that, shouldn't this be automatically done with the configure script ? Regards Marc

Including UCD-SNMP support in Cyrus IMAPD

2003-01-04 Thread marc . bigler
Hello, I am trying to get Cyrus IMAPD 2.1.11 on Solaris 9 to compile with support for UCD-SNMP, I use version 4.2.6 of UCD-SNMP. The problem is that it doesn't detect UCD-SNMP because of the following error in the config.log: configure:6064: checking for sprint_objid in -lsnmp configure:6083:

Re: Including UCD-SNMP support in Cyrus IMAPD

2003-01-04 Thread Scott Smith
do a man -k for one of those functions (kstat_read for example) and if there's a man page for it, it should tell you what libraries you need to link against, which should fix it. I don't have access to a Solaris machine right now so unfortunately that's the best help I can offer, but that should

Re: Including UCD-SNMP support in Cyrus IMAPD

2003-01-04 Thread marc . bigler
do a man -k for one of those functions (kstat_read for example) and if there's a man page for it, it should tell you what libraries you need to link against, which should fix it. I've just did that and discovered that there is actually a library called libkstat residing in /usr/lib on Solaris 9.

Re: Including UCD-SNMP support in Cyrus IMAPD

2003-01-04 Thread Igor Brezac
Try ('make distclean' first) LIBS=-lkstat ./configure The real fix is to build self-contained ucd-snmp libs. master.c will not compile if ucd-snmpd package is built with libwrap. If this is the case, I can email you my patch. Hope this helps. -Igor On Sat, 4 Jan 2003 [EMAIL PROTECTED]

Re: Including UCD-SNMP support in Cyrus IMAPD

2003-01-04 Thread marc . bigler
Try ('make distclean' first) LIBS=-lkstat ./configure The real fix is to build self-contained ucd-snmp libs. master.c will not compile if ucd-snmpd package is built with libwrap. If this is the case, I can email you my patch. Hope this helps. That helped for the configure but now I get

Re: Including UCD-SNMP support in Cyrus IMAPD

2003-01-04 Thread Igor Brezac
On Sat, 4 Jan 2003 [EMAIL PROTECTED] wrote: Try ('make distclean' first) LIBS=-lkstat ./configure The real fix is to build self-contained ucd-snmp libs. master.c will not compile if ucd-snmpd package is built with libwrap. If this is the case, I can email you my patch. Hope this