Re: compiling cyrus-imapd on amd64

2008-10-06 Thread David Newman
On 10/5/08 6:21 PM, Wesley Craig wrote: On 05 Oct 2008, at 18:14, Michael Menge wrote: the config.guess and config.sub included in cyrus are very old, replace them with a newer version.You may already have a newer version on your system. Also, the latest config.guess and .sub have been

compiling cyrus-imapd on amd64

2008-10-05 Thread David Newman
cyrus-imapd-2.3.12p2, FreeBSD 7.0 64-bit, Opteron CPUs When building from source, running configure produces this error: checking build system type... Invalid configuration `amd64-unknown-freebsd7.0': machine `amd64-unknown' not recognized Searching archives showed some posts from a few years

Re: compiling cyrus-imapd on amd64

2008-10-05 Thread Michael Menge
Hi Quoting David Newman [EMAIL PROTECTED]: cyrus-imapd-2.3.12p2, FreeBSD 7.0 64-bit, Opteron CPUs When building from source, running configure produces this error: checking build system type... Invalid configuration `amd64-unknown-freebsd7.0': machine `amd64-unknown' not recognized

Re: compiling cyrus-imapd on amd64

2008-10-05 Thread Wesley Craig
On 05 Oct 2008, at 18:14, Michael Menge wrote: the config.guess and config.sub included in cyrus are very old, replace them with a newer version.You may already have a newer version on your system. Also, the latest config.guess and .sub have been committed to HEAD for inclusion in the

Compiling cyrus-imapd

2006-08-11 Thread Kevin Kruzich
I've found I can/cannot authenticate with imtest depending on the following combination of configure options (below). Does cyrus-imapd have a sense of Berkeley DB v. GNU DBM? Using --with-cyrus-prefix=/usr/local/cyrus --without-bdb --with-dblib=gdbm doesn't seem to have any effect.

Re: Problems Compiling cyrus-imapd-2.2.9 on Solaris 9

2005-01-12 Thread Alex S Moore
On Wed, 12 Jan 2005 09:47:19 -0800 H. Scott Brown [EMAIL PROTECTED] wrote: make[1]: Entering directory `/export/home/hs.brown/cyrus-imapd-2.2.9/perl' ### Making all in /export/home/hs.brown/cyrus-imapd-2.2.9/perl/imap Note (probably harmless): No library found for -lsasl2 Note (probably

RE: Problems Compiling cyrus-imapd-2.2.9 on Solaris 9

2005-01-12 Thread H. Scott Brown
: Wednesday, January 12, 2005 10:41 AM To: info-cyrus@lists.andrew.cmu.edu Subject: Re: Problems Compiling cyrus-imapd-2.2.9 on Solaris 9 On Wed, 12 Jan 2005 09:47:19 -0800 H. Scott Brown [EMAIL PROTECTED] wrote: make[1]: Entering directory `/export/home/hs.brown/cyrus-imapd-2.2.9/perl' ### Making all

Compiling cyrus imapd w/ new DB version that the system core.

2004-04-04 Thread Edward Rudd
I'm running White box Linux which has DB 4.1.25 as the Core DB (db4, db4-devel RPM packages) I have compiled a db42 package (db 4.2.52 w/ the 2 patches) on the system and am wanting to use that instead for all my DB needs.. (apache,subversion,cyrus-sasl,cyrus-imapd,openldap, etc..) Am I asking

Problem compiling cyrus-imapd 2.2-cvs ldap ptclient

2003-11-03 Thread Vittorio Manfredini
I tried to compile cyrus-imapd 2.2 (latest from cvs) with ldap ptclient, but I receive an error regurding lutil.h and lutil_ldap.h not found. I search an my tree and effectivly there are not present. Where I can found it ? Or better which package shoul include it ? Thanks -- Vittorio

Re: Compiling Cyrus IMAPD on AMD Opteron

2003-06-13 Thread curtis
Compiling with the -fPIC fixes the problem. I had to do this for the following: imclient.c imparse.c xmalloc.c imapurl.c iptostring.c assert.c util.c libisieve.c prot.c Why does -fPIC fix this problem? [EMAIL PROTECTED] wrote: make[2]: Entering directory

Re: Compiling Cyrus IMAPD on AMD Opteron

2003-06-13 Thread Henrique de Moraes Holschuh
On Fri, 13 Jun 2003, [EMAIL PROTECTED] wrote: Compiling with the -fPIC fixes the problem. I had to do this for the following: imclient.c imparse.c xmalloc.c imapurl.c iptostring.c assert.c util.c libisieve.c prot.c Why does -fPIC fix this problem? Because of either: 1. AMD64 is

Re: Compiling Cyrus IMAPD on AMD Opteron

2003-06-13 Thread Igor Brezac
On Fri, 13 Jun 2003, Henrique de Moraes Holschuh wrote: On Fri, 13 Jun 2003, [EMAIL PROTECTED] wrote: Compiling with the -fPIC fixes the problem. I had to do this for the following: imclient.c imparse.c xmalloc.c imapurl.c iptostring.c assert.c util.c libisieve.c prot.c Why does

Re: Compiling Cyrus IMAPD on AMD Opteron

2003-06-13 Thread Rob Siemborski
On Fri, 13 Jun 2003, Igor Brezac wrote: Anything that goes inside a lib should be -fPIC. Really. I have done this in the Debian build (which runs OK in S/390, IA64, Alpha, MIPS, MIPS-EL...) ages ago. I don't know if these changes are in CMU Cyrus. This in true only for shared libs unless

Re: Compiling Cyrus IMAPD on AMD Opteron

2003-06-13 Thread Lawrence Greenfield
Date: Fri, 13 Jun 2003 11:11:41 -0400 (EDT) From: Rob Siemborski [EMAIL PROTECTED] Yep. Arch dislikes mixing PIC and non-PIC code inside a relocatable object. Correct. On Solaris, I build lib/ and perl/sieve/lib with -fPIC just to build cyrus-imap perl stuff.

Re: Compiling Cyrus IMAPD on AMD Opteron

2003-06-13 Thread Igor Brezac
On Fri, 13 Jun 2003, Rob Siemborski wrote: On Fri, 13 Jun 2003, Igor Brezac wrote: Anything that goes inside a lib should be -fPIC. Really. I have done this in the Debian build (which runs OK in S/390, IA64, Alpha, MIPS, MIPS-EL...) ages ago. I don't know if these changes are in CMU

Re: Compiling Cyrus IMAPD on AMD Opteron

2003-06-13 Thread Igor Brezac
On Fri, 13 Jun 2003, Lawrence Greenfield wrote: Date: Fri, 13 Jun 2003 11:11:41 -0400 (EDT) From: Rob Siemborski [EMAIL PROTECTED] Yep. Arch dislikes mixing PIC and non-PIC code inside a relocatable object. Correct. On Solaris, I build lib/ and perl/sieve/lib with

Re: Compiling Cyrus IMAPD on AMD Opteron

2003-06-13 Thread Stephen L. Ulmer
On 13 Jun 2003, Rob Siemborski said: On Fri, 13 Jun 2003, Igor Brezac wrote: Anything that goes inside a lib should be -fPIC. Really. I have done this in the Debian build (which runs OK in S/390, IA64, Alpha, MIPS, MIPS-EL...) ages ago. I don't know if these changes are in CMU Cyrus.

Compiling Cyrus IMAPD on AMD Opteron

2003-06-12 Thread curtis
I have a dual AMD Opteron configured with the SUSE Linux 8 for AMD64. I am testing the trail system out. The problem comes in when the make gets to compiling the Perl IMAP module. Cyrus SASL compiled fine. GCC: gcc version 3.2.2 (SuSE Linux) Perl ver: 5.8.0 Cyrus SASL ver: 2.1.13 ./configure

Re: Compiling Cyrus IMAPD on AMD Opteron

2003-06-12 Thread Patrick Morris
Unfortunately, you've snipped the part that would show what's really broken: the compilation of libcyrus.a. It looks like Perl on that system is misconfigured, and didn't compile libcyrus.a with the -fPIC option needed to link it into a shared library. [EMAIL PROTECTED] wrote: I have a dual

Re: Compiling Cyrus IMAPD on AMD Opteron

2003-06-12 Thread John Alton Tamplin
[EMAIL PROTECTED] wrote: make[2]: Entering directory `/root/src/cyrus-imapd-2.1.13/perl/imap' rm -f blib/arch/auto/Cyrus/IMAP/IMAP.so LD_RUN_PATH=/usr/lib64 cc -shared -L/usr/local/lib64 IMAP.o -o blib/arch/auto/Cyrus/IMAP/IMAP.so ../../lib/libcyrus.a -lssl -lcrypto

Re: Compiling cyrus-imapd for Solaris 2.5 ( Respost )

2002-10-23 Thread Amos Gouaux
On Wed, 23 Oct 2002 10:13:18 +0200, Francesc Guasch [EMAIL PROTECTED] (fg) writes: fg anything else I could try ? Upgrading Solaris? You're using a hugely buggy release -- Amos

Re: Compiling cyrus-imapd for Solaris 2.5 ( Respost )

2002-10-23 Thread Hajimu UMEMOTO
Hi, On Wed, 23 Oct 2002 10:13:18 +0200 Francesc Guasch [EMAIL PROTECTED] said: frankie Carson Gaspar wrote: --On Monday, October 21, 2002 10:43 AM +0200 Francesc Guasch In file included from getaddrinfo.c:71: /usr/local/lib/gcc-lib/sparc-sun-solaris2.5/3.2/include/rpc/clnt.h:110:

Re: Compiling cyrus-imapd for Solaris 2.5 ( Respost )

2002-10-23 Thread Francesc Guasch
Carson Gaspar wrote: --On Monday, October 21, 2002 10:43 AM +0200 Francesc Guasch In file included from getaddrinfo.c:71: /usr/local/lib/gcc-lib/sparc-sun-solaris2.5/3.2/include/rpc/clnt.h:110: field `RE_why' has incomplete type defined in /usr/include/rpc/auth.h Thank you ! I added a

Re: problem compiling cyrus-imapd-1.6.24

2002-01-17 Thread Guy Durand
Marcelo Maraboli wrote: you need to compile it like.. ./configure --with-auth=unix --with-dbdir=/usr/local/BerkeleyDB.3.3 and optional.. --with-sasl=/usr/local/sasl --with-openssl=/usr/local/ssl --without-krb This is what I get now: [01:05:17]tmc230:/usr/local/local# cyradm -u cyrus

Re: problem compiling cyrus-imapd-1.6.24

2002-01-16 Thread Guy Durand
Tarjei Huse wrote: Why not use 2.0.16? Guy Durand wrote: I have compiled db-3.3.11, cyrus-sasl.1.5.27 without any trouble whatsoever but when attempting to compile cyrus-imapd-1.6.24 with the following directives and parameters: ./configure --with-auth=unix make depend make all

Re: problem compiling cyrus-imapd-2.0.16 w/ cyrus-sasl-1.5.27

2001-11-26 Thread Leena Heino
On Mon, 26 Nov 2001, Thomas C. Meggs wrote: So no suggestions on this? =/ I'm definitely stuck. Here's what I did. I did not have need fo kerberos support but the system was Solaris with OpenSSL in /usr/local/ssl and BerkeleyDB in /usr/local/BerkeleyDB.3.3 SASL-library: cd cyrus-sasl-1.5.27

problem compiling cyrus-imapd-2.0.16 w/ cyrus-sasl-1.5.27

2001-11-25 Thread Thomas C. Meggs
-0500 (EST) From: Thomas C. Meggs [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: problem compiling cyrus-imapd-2.0.16 w/ cyrus-sasl-1.5.27 Here is what I'm using: SunOS servername 5.8 Generic_108528-11 sun4u sparc SUNW,Sun-Blade-100 cyrus-sasl-1.5.27 cyrus-imapd-2.0.16 afs 3.6-2.26 krb4-1.0.8 db

Re: problem compiling cyrus-imapd-2.0.16 w/ cyrus-sasl-1.5.27

2001-11-16 Thread Tom Cowin
tested the binaries. I assume that they work. I ran into my problem with compiling cyrus-imapd which I have yet to resolve. Again, I had problems with the configure script breaking. Here is what I executed: ./configure --prefix=/usr/local/cyrus --with-krb=/usr/software/krb4 \ --with-openssl=/usr

Re: problem compiling cyrus-imapd-2.0.16 w/ cyrus-sasl-1.5.27

2001-11-16 Thread Thomas C. Meggs
a hitch, although I haven't actually tested the binaries. I assume that they work. I ran into my problem with compiling cyrus-imapd which I have yet to resolve. Again, I had problems with the configure script breaking. Here is what I executed: ./configure --prefix=/usr/local/cyrus --with-krb=/usr

problem compiling cyrus-imapd-2.0.16 w/ cyrus-sasl-1.5.27

2001-11-15 Thread Thomas C. Meggs
setenv LDFLAGS -L/usr/software/krb4/lib -L/usr/software/db/lib setenv LIBS -lkrb -lnsl -ldes At any rate though, libsasl compiled without a hitch, although I haven't actually tested the binaries. I assume that they work. I ran into my problem with compiling cyrus-imapd which I have yet to resolve

Problems compiling cyrus-imapd-2.0.15

2001-07-25 Thread Alfonso GarcĂ­a
Problems compiling cyrus-imapd-2.0.15 Hi, I have a linux box (Red Hat 7.0), and I'm having problems trying to compile cyrus-imapd-2.0.15. What I get is the following. # ./configure # make depend # make all ... ### Done building chartables. gcc -c -I.. -I/usr/local/include

Re: Problems compiling cyrus-imapd-2.0.15

2001-07-25 Thread Kevin J. Menard, Jr.
Hey Alfonso, Wednesday, July 25, 2001, 7:11:55 AM, you wrote: AG Problems compiling cyrus-imapd-2.0.15 AG Hi, AG I have a linux box (Red Hat 7.0), and I'm AG having problems trying to compile cyrus-imapd-2.0.15. AG What I get is the following. AG # ./configure AG # make depend AG

Re: Prob in compiling cyrus-imapd-2.0.15 on HP_UX 10.20

2001-07-23 Thread Gowranga K.H.
Hello, An attempt to compile cyrus 2.0.15 gave the error as follows. Any suggestion(s) will be highly appreciated. Thanks in advance. -gowranga CC=/opt/ansic/bin/cc -Ae Version of libsasl 1.5.24 Version of libssl 0.9.6a