Hello.
I'm becoming crazy with this. I try build courier-imap-3.0.3 with this
parameters:
MAKE=gmake CC=g++ ./configure \
--disable-root-check \
--with-sasl=/usr/local/lib/sasl2 \
--with-perl \
--with-auth=unix \
--with-dbdir=/usr/bin \
--with-bdb-libdir=/usr/lib \
--with-bdb-incdir=/usr/include \
--with-openssl=/usr/local/ssl \
--with-authmysql --with-mysql-libs=/usr/lib/mysql --with-mysql-includes=/usr
/include/mysql \
--without-ucdsnmp
But i get following error:
checking for fcntl... yes
checking for flock... no
checking for lockf... yes
checking for locking method... configure: error: must
specify --with-locking-method option
configure: error: /bin/sh './configure' failed for liblock
Then i try build with(fcntl and lockf methods):
MAKE=gmake CC=g++ ./configure \
--disable-root-check \
--with-sasl=/usr/local/lib/sasl2 \
--with-perl \
--with-auth=unix \
--with-dbdir=/usr/bin \
--with-bdb-libdir=/usr/lib \
--with-bdb-incdir=/usr/include \
--with-openssl=/usr/local/ssl \
--with-authmysql --with-mysql-libs=/usr/lib/mysql --with-mysql-includes=/usr
/include/mysql \
--without-ucdsnmp --with-locking-method=fcntl
And i get:
checking for fcntl... yes
checking for flock... no
checking for lockf... yes
checking for locking method... configure: error: lockf test failed.
configure: error: /bin/sh './configure' failed for liblock
What happen ? Any idea to solve this ?
Thanks.