This is the mail archive of the
cygwin
mailing list for the Cygwin project.
Re: Installing Courier-Imap
Sorry this should have been in my previous email.
Brian Dessent wrote:
All of those gdbm_* functions are implemented in the files under
gdbmobj, which should produce libgdbmobj.a. If you look at the
configure.in for makedat, you see:
case "$db" in
gdbm)
USE_GDBM=1
USE_DB=0
LIBDB=""
dblibrary=../gdbmobj/libgdbmobj.a
;;
db)
USE_DB=1
USE_GDBM=0
LIBGDBM=""
dblibrary=../bdbobj/libbdbobj.a
;;
*)
makedatprog_target=""
esac
No, it seems to say:
case "$db" in
gdbm)
dblibrary=../gdbmobj/libgdbmobjs.la
LIBDB=""
;;
db)
dblibrary=../bdbobj/libbdbobjs.la
LIBGDBM=""
;;
*)
makedatprog_target=""
esac
...then in Makefile.ac you have:
makedatprog_LDADD=@dblibrary@ @LIBGDBM@ @LIBDB@
No, but there is Makefile.am which says:
# $Id: Makefile.am,v 1.5 2004/09/08 01:27:34 mrsam Exp $
#
# Copyright 1998 - 2004 Double Precision, Inc. See COPYING for
# distribution information.
AUTOMAKE = srcdir=${srcdir} @SHELL@ ${srcdir}/../automake.fix @AUTOMAKE@
noinst_PROGRAMS=@makedatprog_target@
EXTRA_PROGRAMS=makedatprog
makedatprog_SOURCES=makedatprog.c
makedatprog_DEPENDENCIES=@dblibrary@
makedatprog_LDADD=@dblibrary@ @LIBGDBM@ @LIBDB@
--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Problem reports: http://cygwin.com/problems.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/