annotate src/lib-auth/Makefile.am @ 9984:097588a7903c HEAD

lib-auth: Changed API to connect to only a single specified auth socket. Login processes now always connect to socket called "auth".
author Timo Sirainen <tss@iki.fi>
date Wed, 07 Oct 2009 17:46:14 -0400
parents 3cac418eeab5
children eee1e2a1c25b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9017
1b586a2fee8b Build libdovecot.so and libdovecot-storage.so.
Timo Sirainen <tss@iki.fi>
parents: 8365
diff changeset
1 noinst_LTLIBRARIES = libauth.la
1702
43815588dd6b Moved client side code for auth process handling to lib-auth. Some other login process cleanups.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
2
2796
fb7f862194b5 Upgrades to autoconf 2.5 and automake >1.4.
Timo Sirainen <tss@iki.fi>
parents: 1739
diff changeset
3 AM_CPPFLAGS = \
1702
43815588dd6b Moved client side code for auth process handling to lib-auth. Some other login process cleanups.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
4 -I$(top_srcdir)/src/lib
43815588dd6b Moved client side code for auth process handling to lib-auth. Some other login process cleanups.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
5
9017
1b586a2fee8b Build libdovecot.so and libdovecot-storage.so.
Timo Sirainen <tss@iki.fi>
parents: 8365
diff changeset
6 libauth_la_SOURCES = \
1702
43815588dd6b Moved client side code for auth process handling to lib-auth. Some other login process cleanups.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
7 auth-client.c \
9984
097588a7903c lib-auth: Changed API to connect to only a single specified auth socket.
Timo Sirainen <tss@iki.fi>
parents: 9220
diff changeset
8 auth-client-request.c \
8365
f97099eb4dee New generic userdb lookup api `auth-master' in lib-auth.
Sascha Wilde <wilde@intevation.de>
parents: 5197
diff changeset
9 auth-master.c \
9984
097588a7903c lib-auth: Changed API to connect to only a single specified auth socket.
Timo Sirainen <tss@iki.fi>
parents: 9220
diff changeset
10 auth-server-connection.c
1702
43815588dd6b Moved client side code for auth process handling to lib-auth. Some other login process cleanups.
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
11
5197
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 2796
diff changeset
12 headers = \
1739
c9026bb73dae missing .h files
Timo Sirainen <tss@iki.fi>
parents: 1702
diff changeset
13 auth-client.h \
9185
637b627efbf1 Moved auth-client-interface.h to lib-auth/.
Timo Sirainen <tss@iki.fi>
parents: 9017
diff changeset
14 auth-client-interface.h \
9984
097588a7903c lib-auth: Changed API to connect to only a single specified auth socket.
Timo Sirainen <tss@iki.fi>
parents: 9220
diff changeset
15 auth-client-private.h \
097588a7903c lib-auth: Changed API to connect to only a single specified auth socket.
Timo Sirainen <tss@iki.fi>
parents: 9220
diff changeset
16 auth-client-request.h \
8365
f97099eb4dee New generic userdb lookup api `auth-master' in lib-auth.
Sascha Wilde <wilde@intevation.de>
parents: 5197
diff changeset
17 auth-master.h \
9984
097588a7903c lib-auth: Changed API to connect to only a single specified auth socket.
Timo Sirainen <tss@iki.fi>
parents: 9220
diff changeset
18 auth-server-connection.h
5197
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 2796
diff changeset
19
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 2796
diff changeset
20 if INSTALL_HEADERS
9220
3cac418eeab5 Flattened header namespace on install.
Mark Washenberger
parents: 9185
diff changeset
21 pkginc_libdir=$(pkgincludedir)
5197
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 2796
diff changeset
22 pkginc_lib_HEADERS = $(headers)
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 2796
diff changeset
23 else
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 2796
diff changeset
24 noinst_HEADERS = $(headers)
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 2796
diff changeset
25 endif