RH 9.0 ssl compiler error
Richard Houston
rhouston at rlhc.net
Mon Jun 9 15:49:06 EDT 2003
Thanks to all that responded to my issue.
The one that worked for me was setting defs in "configure" to be;
DEFS="-DHAVE_CONFIG_H -DOPENSSL_NO_KRB5"
Fix provided by Gareth Butt!!! Thank dude.
Thanks again everyone.
Rich
On Mon, 2003-06-09 at 14:31, Hank Beatty wrote:
> On Fri, 2003-06-06 at 13:22, Jon Nelson wrote:
> > Richard Houston said:
> > > Hi all,
> > >
> > > I am trying to compile Cyrus 2.1.13 on RH 9.0 but it keeps crapping out
> >
> > I had the same problem recently. Let me know if "--without-krb" works,
> > but I don't think it does. A friend of mine wrote this perl script to fix
> > it:
>
> it's actually --without-openssl
>
> >
> > #!/usr/bin/perl -w
> > # FIXIT: for use in cyrus-imapd until they catch up to Redhat's recent
> > # location for kerberos include files
> >
> > use strict;
> >
> > # these are the subdirectories with Makefiles which need modification
> > my @dirs = qw( acap lib imap imtest perl/sieve/lib timsieved );
> >
> > foreach (@dirs) {
> > my $file = "$_/Makefile";
> >
> > open F, "$file"; # read all lines from the Makefile
> > my @lines = <F>;
> > close F;
> >
> > open F, ">$file"; # rewrite the Makefile
> > foreach (@lines) {
> > chomp; # strip off newline
> > # append "-I/usr/kerberos/include" to the CPPFLAGS line
> > # if it's not already there
> > $_ .= " -I/usr/kerberos/include" if /^CPPFLAGS/ && ! /kerberos/;
> >
> > print F "$_\n"; # write the line to the file
> > }
> > close F;
> > }
>
> this script worked for me with this mod:
>
> my @dirs = ( lib imap imtest perl/sieve/lib timsieved);
>
> Thank you for all of your help.
>
> Regards,
More information about the Info-cyrus
mailing list