hello,
I am trying to compile the CVS HEAD version of Anubis because
I want to test the SMTP AUTH feature. I did use the following
configure options:
./configure --prefix=/usr/local \
--sysconfdir=/usr/local/etc \
--localstatedir=/var \
--with-gnu-ld \
--with-libiconv-prefix=/usr/local \
--with-libintl-prefix=/usr/local \
--with-gpgme-prefix=/usr/local \
--with-gsasl \
--with-mysql \
--with-postgres \
--with-openssl \
--with-pcre \
--with-pam \
--with-tcp-wrappers \
--without-gnutls
while running make I am getting the following error message:
make all-am
if gcc -DHAVE_CONFIG_H -DLOCALEDIR=\"/usr/local/share/locale\" -I. -I.
-I.. -I../lib -I../intl -I/usr/local/include -Wall -O2 -MT ssl.o -MD
-MP -MF ".deps/ssl.Tpo" -c -o ssl.o ssl.c; then mv -f ".deps/ssl.Tpo"
".deps/ssl.Po"; else rm -f ".deps/ssl.Tpo"; exit 1; fi
ssl.c:163: error: conflicting types for `start_ssl_client'
headers.h:451: error: previous declaration of `start_ssl_client'
ssl.c: In function `start_ssl_client':
ssl.c:190: warning: implicit declaration of function `net_set_io'
ssl.c: At top level:
ssl.c:233: error: conflicting types for `start_ssl_server'
headers.h:453: error: previous declaration of `start_ssl_server'
Can you give me some hints on what is going wrong?