annotate src/pop3/Makefile.am @ 9283:0de21e725d4e HEAD

ssl_username_from_cert=yes: Don't truncate username, don't allow NULs in it.
author Timo Sirainen <tss@iki.fi>
date Tue, 04 Aug 2009 14:54:56 -0400
parents 5eb05134db86
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
1043
cacabd33c68a Initial code for POP3 server. RETR isn't working right yet, there's some
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
1 pkglibexecdir = $(libexecdir)/dovecot
cacabd33c68a Initial code for POP3 server. RETR isn't working right yet, there's some
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
2
cacabd33c68a Initial code for POP3 server. RETR isn't working right yet, there's some
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
3 pkglibexec_PROGRAMS = pop3
cacabd33c68a Initial code for POP3 server. RETR isn't working right yet, there's some
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
4
2796
fb7f862194b5 Upgrades to autoconf 2.5 and automake >1.4.
Timo Sirainen <tss@iki.fi>
parents: 1607
diff changeset
5 AM_CPPFLAGS = \
1043
cacabd33c68a Initial code for POP3 server. RETR isn't working right yet, there's some
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
6 -I$(top_srcdir)/src/lib \
3789
0120998fb2d9 Register proxy dictionary support and link libdict. Currently it's used only
Timo Sirainen <tss@iki.fi>
parents: 3037
diff changeset
7 -I$(top_srcdir)/src/lib-dict \
1043
cacabd33c68a Initial code for POP3 server. RETR isn't working right yet, there's some
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
8 -I$(top_srcdir)/src/lib-mail \
4446
6d0ca893eab8 Changed the mail_plugins/mail_plugin_dir settings to be passed as the same
Timo Sirainen <tss@iki.fi>
parents: 4424
diff changeset
9 -I$(top_srcdir)/src/lib-storage \
6d0ca893eab8 Changed the mail_plugins/mail_plugin_dir settings to be passed as the same
Timo Sirainen <tss@iki.fi>
parents: 4424
diff changeset
10 -DMODULEDIR=\""$(moduledir)"\"
1043
cacabd33c68a Initial code for POP3 server. RETR isn't working right yet, there's some
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
11
4424
b6ece4ed0343 Added -export-dynamic.
Timo Sirainen <tss@iki.fi>
parents: 4318
diff changeset
12 pop3_LDFLAGS = -export-dynamic
b6ece4ed0343 Added -export-dynamic.
Timo Sirainen <tss@iki.fi>
parents: 4318
diff changeset
13
4318
0cb50c985ac6 Link mountpoint.o manually to get mountpoint_get() included into binary, so
Timo Sirainen <tss@iki.fi>
parents: 3789
diff changeset
14 # get some functions included which only plugins use. liblib should probably
0cb50c985ac6 Link mountpoint.o manually to get mountpoint_get() included into binary, so
Timo Sirainen <tss@iki.fi>
parents: 3789
diff changeset
15 # be a shared library so this wouldn't be needed..
0cb50c985ac6 Link mountpoint.o manually to get mountpoint_get() included into binary, so
Timo Sirainen <tss@iki.fi>
parents: 3789
diff changeset
16 unused_objects = \
8569
5eb05134db86 Make sure mail_log plugin works with deliver and pop3.
Timo Sirainen <tss@iki.fi>
parents: 8376
diff changeset
17 ../lib/mountpoint.o \
5eb05134db86 Make sure mail_log plugin works with deliver and pop3.
Timo Sirainen <tss@iki.fi>
parents: 8376
diff changeset
18 ../lib-imap/imap-util.o
4318
0cb50c985ac6 Link mountpoint.o manually to get mountpoint_get() included into binary, so
Timo Sirainen <tss@iki.fi>
parents: 3789
diff changeset
19
1465
03dd87873a81 Added support for dynamically loadable imap/pop3 modules.
Timo Sirainen <tss@iki.fi>
parents: 1461
diff changeset
20 libs = \
1406
02c192ea6f31 Use STORAGE_LIBS.
Timo Sirainen <tss@iki.fi>
parents: 1304
diff changeset
21 $(STORAGE_LIBS) \
3789
0120998fb2d9 Register proxy dictionary support and link libdict. Currently it's used only
Timo Sirainen <tss@iki.fi>
parents: 3037
diff changeset
22 ../lib-dict/libdict.a \
4318
0cb50c985ac6 Link mountpoint.o manually to get mountpoint_get() included into binary, so
Timo Sirainen <tss@iki.fi>
parents: 3789
diff changeset
23 $(unused_objects)
1043
cacabd33c68a Initial code for POP3 server. RETR isn't working right yet, there's some
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
24
1465
03dd87873a81 Added support for dynamically loadable imap/pop3 modules.
Timo Sirainen <tss@iki.fi>
parents: 1461
diff changeset
25 pop3_LDADD = \
03dd87873a81 Added support for dynamically loadable imap/pop3 modules.
Timo Sirainen <tss@iki.fi>
parents: 1461
diff changeset
26 $(libs) \
03dd87873a81 Added support for dynamically loadable imap/pop3 modules.
Timo Sirainen <tss@iki.fi>
parents: 1461
diff changeset
27 $(LIBICONV) \
03dd87873a81 Added support for dynamically loadable imap/pop3 modules.
Timo Sirainen <tss@iki.fi>
parents: 1461
diff changeset
28 $(MODULE_LIBS)
03dd87873a81 Added support for dynamically loadable imap/pop3 modules.
Timo Sirainen <tss@iki.fi>
parents: 1461
diff changeset
29
03dd87873a81 Added support for dynamically loadable imap/pop3 modules.
Timo Sirainen <tss@iki.fi>
parents: 1461
diff changeset
30 pop3_DEPENDENCIES = $(libs)
1461
a7676687aac9 Dependency fixes
Timo Sirainen <tss@iki.fi>
parents: 1406
diff changeset
31
1043
cacabd33c68a Initial code for POP3 server. RETR isn't working right yet, there's some
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
32 pop3_SOURCES = \
cacabd33c68a Initial code for POP3 server. RETR isn't working right yet, there's some
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
33 client.c \
cacabd33c68a Initial code for POP3 server. RETR isn't working right yet, there's some
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
34 commands.c \
cacabd33c68a Initial code for POP3 server. RETR isn't working right yet, there's some
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
35 main.c
cacabd33c68a Initial code for POP3 server. RETR isn't working right yet, there's some
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
36
5197
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 5097
diff changeset
37 headers = \
1059
d805c2f1d6a9 Support for CAPA command (rfc2449).
Timo Sirainen <tss@iki.fi>
parents: 1043
diff changeset
38 capability.h \
1043
cacabd33c68a Initial code for POP3 server. RETR isn't working right yet, there's some
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
39 client.h \
cacabd33c68a Initial code for POP3 server. RETR isn't working right yet, there's some
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
40 commands.h \
cacabd33c68a Initial code for POP3 server. RETR isn't working right yet, there's some
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
41 common.h
5197
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 5097
diff changeset
42
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 5097
diff changeset
43 if INSTALL_HEADERS
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 5097
diff changeset
44 pkginc_libdir=$(pkgincludedir)/src/pop3
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 5097
diff changeset
45 pkginc_lib_HEADERS = $(headers)
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 5097
diff changeset
46 else
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 5097
diff changeset
47 noinst_HEADERS = $(headers)
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 5097
diff changeset
48 endif