Commit 6aaa9c21 6aaa9c2196da9c0e77cab28e25ef58e8fafe1ee9 by Sergey Poznyakoff

(AM_LDFLAGS): Remove.

(LDADD): Add the necessary libraries.
(aclck_LDADD, argcv_LDADD): Remove.
(muemail_LDADD): Needs MU_APP_LIBRARIES.
1 parent 3fca25d4
1 ## Process this file with GNU Automake to create Makefile.in 1 ## Process this file with GNU Automake to create Makefile.in
2 2
3 ## Copyright (C) 2002, 2003, 2004, 2007 Free Software Foundation, Inc. 3 ## Copyright (C) 2002, 2003, 2004, 2007, 2008 Free Software Foundation, Inc.
4 ## 4 ##
5 ## GNU Mailutils is free software; you can redistribute it and/or 5 ## GNU Mailutils is free software; you can redistribute it and/or
6 ## modify it under the terms of the GNU General Public License as 6 ## modify it under the terms of the GNU General Public License as
...@@ -53,43 +53,11 @@ mod_LTLIBRARIES = numaddr.la ...@@ -53,43 +53,11 @@ mod_LTLIBRARIES = numaddr.la
53 53
54 INCLUDES = @MU_COMMON_INCLUDES@ 54 INCLUDES = @MU_COMMON_INCLUDES@
55 55
56 AM_LDFLAGS = \ 56 LDADD = \
57 ../lib/libmuaux.la\
57 ${MU_LIB_MAILUTILS}\ 58 ${MU_LIB_MAILUTILS}\
58 @MU_COMMON_LIBRARIES@ 59 @MU_COMMON_LIBRARIES@
59 60
60 aclck_LDADD =\
61 ../lib/libmuaux.la\
62 ${MU_LIB_MAILUTILS}
63
64 argcv_LDADD =\
65 ../lib/libmuaux.la\
66 ${MU_LIB_MAILUTILS}
67
68 base64_LDADD =\
69 ../lib/libmuaux.la\
70 ${MU_LIB_MAILUTILS}
71
72 decode2047_LDADD =\
73 ../lib/libmuaux.la\
74 ${MU_LIB_MAILUTILS}
75
76 echosrv_LDADD =\
77 ../lib/libmuaux.la\
78 ${MU_LIB_MAILUTILS}
79
80 encode2047_LDADD =\
81 ../lib/libmuaux.la\
82 ${MU_LIB_MAILUTILS}
83
84 header_LDADD =\
85 ../lib/libmuaux.la\
86 ${MU_LIB_MAILUTILS}
87
88 listop_LDADD =\
89 ../lib/libmuaux.la\
90 ${MU_LIB_MAILUTILS}
91
92
93 numaddr_la_SOURCES = numaddr.c 61 numaddr_la_SOURCES = numaddr.c
94 numaddr_la_LIBADD = ${MU_LIB_SIEVE} 62 numaddr_la_LIBADD = ${MU_LIB_SIEVE}
95 numaddr_la_LDFLAGS = -module -avoid-version -no-undefined 63 numaddr_la_LDFLAGS = -module -avoid-version -no-undefined
...@@ -160,4 +128,7 @@ muauth_LDADD = \ ...@@ -160,4 +128,7 @@ muauth_LDADD = \
160 @MU_AUTHLIBS@ \ 128 @MU_AUTHLIBS@ \
161 ${MU_LIB_MAILUTILS} 129 ${MU_LIB_MAILUTILS}
162 130
163 muemail_LDADD = ${MU_APP_LIBRARIES} 131 muemail_LDADD = \
132 ${MU_APP_LIBRARIES} \
133 ${MU_LIB_MAILUTILS}
134
......