annotate src/dict/Makefile.am @ 7844:7b39370dae6b HEAD

If we need -lcrypto for randomness, put it to $LIBS instead of $RAND_LIBS since it needs to be linked to all binaries anyway.
author Timo Sirainen <tss@iki.fi>
date Thu, 12 Jun 2008 23:11:45 +0300
parents 63dd68ae343f
children 2d3e942a4cde
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3787
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
1 pkglibexecdir = $(libexecdir)/dovecot
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
2
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
3 pkglibexec_PROGRAMS = dict
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
4
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
5 AM_CPPFLAGS = \
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
6 -I$(top_srcdir)/src/lib \
3870
099ea3b43ee2 Compile fix
Timo Sirainen <tss@iki.fi>
parents: 3787
diff changeset
7 -I$(top_srcdir)/src/lib-dict \
3967
6fabe878c46d Dictionary takes now a username parameter, which is used for private
Timo Sirainen <tss@iki.fi>
parents: 3870
diff changeset
8 -I$(top_srcdir)/src/lib-sql \
6191
6793d8d934a8 Load plugins from $moduledir/dict/.
Timo Sirainen <tss@iki.fi>
parents: 4517
diff changeset
9 -DDICT_MODULE_DIR=\""$(moduledir)/dict"\" \
3870
099ea3b43ee2 Compile fix
Timo Sirainen <tss@iki.fi>
parents: 3787
diff changeset
10 -DPKG_RUNDIR=\""$(rundir)"\"
3787
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
11
4424
b6ece4ed0343 Added -export-dynamic.
Timo Sirainen <tss@iki.fi>
parents: 4191
diff changeset
12 dict_LDFLAGS = -export-dynamic
b6ece4ed0343 Added -export-dynamic.
Timo Sirainen <tss@iki.fi>
parents: 4191
diff changeset
13
3787
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
14 libs = \
6863
63dd68ae343f Create a separate libdict_backend.a library with sql/db backends and link it
Timo Sirainen <tss@iki.fi>
parents: 6481
diff changeset
15 ../lib-dict/libdict_backend.a \
3787
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
16 ../lib-dict/libdict.a \
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
17 ../lib-sql/libsql.a \
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
18 ../lib/liblib.a
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
19
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
20 dict_LDADD = \
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
21 $(libs) \
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
22 $(MODULE_LIBS) \
4517
e661182eab75 Berkeley DB dict support is now enabled only when using --with-db configure option.
Timo Sirainen <timo.sirainen@movial.fi>
parents: 4424
diff changeset
23 $(DICT_LIBS) \
3787
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
24 $(SQL_LIBS)
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
25
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
26 dict_DEPENDENCIES = $(libs)
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
27
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
28 dict_SOURCES = \
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
29 dict-server.c \
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
30 main.c
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
31
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
32 noinst_HEADERS = \
40600601502e Added dictinary lookup server and a "proxy" dict implementation to talk to
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
33 dict-server.h