Commit c291155f c291155f5d288ec719ba4578a8fb2fb41066544d by Sergey Poznyakoff

Use explicit PROG_DEPENDENCIES (see comment to imap4d_DEPENDENCIES in imap4d/Makefile.am)

1 parent 11f7fca6
## Process this file with GNU Automake to create Makefile.in
## Copyright (C) 2002, 2003 Free Software Foundation, Inc.
## Copyright (C) 2002, 2003, 2005 Free Software Foundation, Inc.
##
## GNU Mailutils is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
......@@ -35,4 +35,4 @@ virtual.c
libmuauth_la_LIBADD = @SQLLIB@ @LTLIBINTL@
libmuauth_la_LDFLAGS = -version-info 0:0:0
libmuauth_la_DEPENDENCIES = @SQLLIB_DEPENDENCY@
\ No newline at end of file
......
## Process this file with GNU Automake to create Makefile.in
## Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
## Copyright (C) 1999, 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
##
## GNU Mailutils is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
......@@ -72,9 +72,13 @@ imap4d_LDADD = \
@SERV_AUTHLIBS@ @MU_COMMON_LIBRARIES@
## This kludge is necessary to correctly establish imap4d -> IMAP_AUTHOBJS
## dependency. Think about better approach --gray
## and imap4d -> AUTHLIBS dependencies. Automake stupidly refuses to
## include them.
## Same kludge appears in pop3d/Makefile.am and auth/Makefile.am
## Think about better approach --gray
imap4d_DEPENDENCIES = \
@IMAP_AUTHOBJS@\
@AUTHLIBS_DEPENDENCY@\
../mailbox/mbox/libmu_mbox.la\
../mailbox/libmailbox.la\
../lib/libmailutils.la
......
## Process this file with GNU Automake to create Makefile.in
## Copyright (C) 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
## Copyright (C) 1999, 2000, 2001, 2002, 2003, 2005 Free Software Foundation, Inc.
##
## GNU Mailutils is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
......@@ -39,3 +39,10 @@ pop3d_LDADD = \
popauth_SOURCES = popauth.c
popauth_LDADD = ../mailbox/libmailbox.la ../lib/libmailutils.la @MU_COMMON_LIBRARIES@
pop3d_DEPENDENCIES = \
@AUTHLIBS_DEPENDENCY@ \
../mailbox/mbox/libmu_mbox.la\
../mailbox/mh/libmu_mh.la\
../mailbox/maildir/libmu_maildir.la\
../mailbox/libmailbox.la\
../lib/libmailutils.la
......