annotate src/auth/Makefile.am @ 5197:e77e4457d95c HEAD

Added --with-headers configure option to install .h files.
author Timo Sirainen <tss@iki.fi>
date Thu, 22 Feb 2007 23:50:46 +0200
parents c04189d77a59
children 971050640e3b
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2380
4e42d4213927 Added auth/libpassword.a which util/dovecotpw can use rather than using
Timo Sirainen <tss@iki.fi>
parents: 2377
diff changeset
1 noinst_LIBRARIES = libpassword.a
4e42d4213927 Added auth/libpassword.a which util/dovecotpw can use rather than using
Timo Sirainen <tss@iki.fi>
parents: 2377
diff changeset
2
656
da039ae2cfd1 Use libexecdir instead of libdir to install the binaries.
Timo Sirainen <tss@iki.fi>
parents: 280
diff changeset
3 pkglibexecdir = $(libexecdir)/dovecot
da039ae2cfd1 Use libexecdir instead of libdir to install the binaries.
Timo Sirainen <tss@iki.fi>
parents: 280
diff changeset
4
2162
95b2a6abc01e Added checkpassword passdb. userdb has only beginnings.
Timo Sirainen <tss@iki.fi>
parents: 2084
diff changeset
5 pkglibexec_PROGRAMS = dovecot-auth checkpassword-reply
0
3b1985cbc908 Initial revision
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
6
2796
fb7f862194b5 Upgrades to autoconf 2.5 and automake >1.4.
Timo Sirainen <tss@iki.fi>
parents: 2776
diff changeset
7 AM_CPPFLAGS = \
280
fa2d1a1d025e vpopmail authentication. compiles, not tested if it really works.
Timo Sirainen <tss@iki.fi>
parents: 0
diff changeset
8 -I$(top_srcdir)/src/lib \
2754
3c3ac12be307 Created generic asynchronous SQL API and implemented MySQL and PostgreSQL
Timo Sirainen <tss@iki.fi>
parents: 2736
diff changeset
9 -I$(top_srcdir)/src/lib-sql \
1062
0522a0315d2f Cleanups, LDAP support compiles again and generally looks ok, even if it
Timo Sirainen <tss@iki.fi>
parents: 1035
diff changeset
10 -I$(top_srcdir)/src/lib-settings \
2377
8f5be0be3199 NTLM authentication. Patch by Andrey Panin
Timo Sirainen <tss@iki.fi>
parents: 2346
diff changeset
11 -I$(top_srcdir)/src/lib-ntlm \
4798
c04189d77a59 Added OTP and S/KEY authentication mechanisms. Patch by Andrey Panin.
Timo Sirainen <tss@iki.fi>
parents: 4638
diff changeset
12 -I$(top_srcdir)/src/lib-otp \
2084
9ba79ebae6ab Added support for password scheme plugins. auth module dir defaults under
Timo Sirainen <tss@iki.fi>
parents: 2077
diff changeset
13 -DAUTH_MODULE_DIR=\""$(moduledir)/auth"\" \
2162
95b2a6abc01e Added checkpassword passdb. userdb has only beginnings.
Timo Sirainen <tss@iki.fi>
parents: 2084
diff changeset
14 -DPKG_LIBEXECDIR=\""$(pkglibexecdir)"\" \
1284
71f61b6a0f02 cleanups
Timo Sirainen <tss@iki.fi>
parents: 1283
diff changeset
15 $(AUTH_CFLAGS)
0
3b1985cbc908 Initial revision
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
16
4424
b6ece4ed0343 Added -export-dynamic.
Timo Sirainen <tss@iki.fi>
parents: 3683
diff changeset
17 dovecot_auth_LDFLAGS = -export-dynamic
b6ece4ed0343 Added -export-dynamic.
Timo Sirainen <tss@iki.fi>
parents: 3683
diff changeset
18
2380
4e42d4213927 Added auth/libpassword.a which util/dovecotpw can use rather than using
Timo Sirainen <tss@iki.fi>
parents: 2377
diff changeset
19 libpassword_a_SOURCES = \
4e42d4213927 Added auth/libpassword.a which util/dovecotpw can use rather than using
Timo Sirainen <tss@iki.fi>
parents: 2377
diff changeset
20 mycrypt.c \
4e42d4213927 Added auth/libpassword.a which util/dovecotpw can use rather than using
Timo Sirainen <tss@iki.fi>
parents: 2377
diff changeset
21 password-scheme.c \
4e42d4213927 Added auth/libpassword.a which util/dovecotpw can use rather than using
Timo Sirainen <tss@iki.fi>
parents: 2377
diff changeset
22 password-scheme-md5crypt.c \
4e42d4213927 Added auth/libpassword.a which util/dovecotpw can use rather than using
Timo Sirainen <tss@iki.fi>
parents: 2377
diff changeset
23 password-scheme-cram-md5.c \
2428
abef2ac8843a Added Compuserve RPA authentication. Patch by Andrey Panin.
Timo Sirainen <tss@iki.fi>
parents: 2380
diff changeset
24 password-scheme-ntlm.c \
4798
c04189d77a59 Added OTP and S/KEY authentication mechanisms. Patch by Andrey Panin.
Timo Sirainen <tss@iki.fi>
parents: 4638
diff changeset
25 password-scheme-otp.c \
2428
abef2ac8843a Added Compuserve RPA authentication. Patch by Andrey Panin.
Timo Sirainen <tss@iki.fi>
parents: 2380
diff changeset
26 password-scheme-rpa.c
2380
4e42d4213927 Added auth/libpassword.a which util/dovecotpw can use rather than using
Timo Sirainen <tss@iki.fi>
parents: 2377
diff changeset
27
1062
0522a0315d2f Cleanups, LDAP support compiles again and generally looks ok, even if it
Timo Sirainen <tss@iki.fi>
parents: 1035
diff changeset
28 dovecot_auth_LDADD = \
2380
4e42d4213927 Added auth/libpassword.a which util/dovecotpw can use rather than using
Timo Sirainen <tss@iki.fi>
parents: 2377
diff changeset
29 libpassword.a \
1062
0522a0315d2f Cleanups, LDAP support compiles again and generally looks ok, even if it
Timo Sirainen <tss@iki.fi>
parents: 1035
diff changeset
30 ../lib-settings/libsettings.a \
2377
8f5be0be3199 NTLM authentication. Patch by Andrey Panin
Timo Sirainen <tss@iki.fi>
parents: 2346
diff changeset
31 ../lib-ntlm/libntlm.a \
4798
c04189d77a59 Added OTP and S/KEY authentication mechanisms. Patch by Andrey Panin.
Timo Sirainen <tss@iki.fi>
parents: 4638
diff changeset
32 ../lib-otp/libotp.a \
2754
3c3ac12be307 Created generic asynchronous SQL API and implemented MySQL and PostgreSQL
Timo Sirainen <tss@iki.fi>
parents: 2736
diff changeset
33 ../lib-sql/libsql.a \
0
3b1985cbc908 Initial revision
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
34 ../lib/liblib.a \
1335
5ad84c54eb7e Support using OpenSSL's pseudo-random generator instead of /dev/urandom. If
Timo Sirainen <tss@iki.fi>
parents: 1284
diff changeset
35 $(AUTH_LIBS) \
1465
03dd87873a81 Added support for dynamically loadable imap/pop3 modules.
Timo Sirainen <tss@iki.fi>
parents: 1437
diff changeset
36 $(RAND_LIBS) \
03dd87873a81 Added support for dynamically loadable imap/pop3 modules.
Timo Sirainen <tss@iki.fi>
parents: 1437
diff changeset
37 $(MODULE_LIBS)
1150
18a2074a4d3d Support for dynamic authentication modules.
Timo Sirainen <tss@iki.fi>
parents: 1135
diff changeset
38
1062
0522a0315d2f Cleanups, LDAP support compiles again and generally looks ok, even if it
Timo Sirainen <tss@iki.fi>
parents: 1035
diff changeset
39 dovecot_auth_SOURCES = \
3065
29d83a8bb50d Reorganized the code to have less global/static variables.
Timo Sirainen <tss@iki.fi>
parents: 3064
diff changeset
40 auth.c \
2798
54b29901a793 Added simple LRU cache for auth requests. Currently only for sql passdb.
Timo Sirainen <tss@iki.fi>
parents: 2796
diff changeset
41 auth-cache.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: 1465
diff changeset
42 auth-client-connection.c \
43815588dd6b Moved client side code for auth process handling to lib-auth. Some other login process cleanups.
Timo Sirainen <tss@iki.fi>
parents: 1465
diff changeset
43 auth-master-connection.c \
3308
3f090bcaffcc Allow multiple master connections for a single listener.
Timo Sirainen <tss@iki.fi>
parents: 3166
diff changeset
44 auth-master-listener.c \
1150
18a2074a4d3d Support for dynamic authentication modules.
Timo Sirainen <tss@iki.fi>
parents: 1135
diff changeset
45 auth-module.c \
3064
2d33734b16d5 Split auth_request* functions from mech.c to auth-request.c
Timo Sirainen <tss@iki.fi>
parents: 3062
diff changeset
46 auth-request.c \
3074
3feb38ff17f5 Moving code around.
Timo Sirainen <tss@iki.fi>
parents: 3065
diff changeset
47 auth-request-handler.c \
3520
e2fe8222449d s/occured/occurred/
Timo Sirainen <tss@iki.fi>
parents: 3308
diff changeset
48 auth-stream.c \
3166
e6a487d80288 Restructuring of auth code. Balancer auth processes were a bad idea. Usually
Timo Sirainen <tss@iki.fi>
parents: 3077
diff changeset
49 auth-worker-client.c \
e6a487d80288 Restructuring of auth code. Balancer auth processes were a bad idea. Usually
Timo Sirainen <tss@iki.fi>
parents: 3077
diff changeset
50 auth-worker-server.c \
1062
0522a0315d2f Cleanups, LDAP support compiles again and generally looks ok, even if it
Timo Sirainen <tss@iki.fi>
parents: 1035
diff changeset
51 db-ldap.c \
2754
3c3ac12be307 Created generic asynchronous SQL API and implemented MySQL and PostgreSQL
Timo Sirainen <tss@iki.fi>
parents: 2736
diff changeset
52 db-sql.c \
1062
0522a0315d2f Cleanups, LDAP support compiles again and generally looks ok, even if it
Timo Sirainen <tss@iki.fi>
parents: 1035
diff changeset
53 db-passwd-file.c \
0
3b1985cbc908 Initial revision
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
54 main.c \
1035
fe49ece0f3ea We have now separate "userdb" and "passdb". They aren't tied to each others
Timo Sirainen <tss@iki.fi>
parents: 917
diff changeset
55 mech.c \
1437
c27c6089e933 Added support for ANONYMOUS SASL mechanism.
Timo Sirainen <tss@iki.fi>
parents: 1335
diff changeset
56 mech-anonymous.c \
1035
fe49ece0f3ea We have now separate "userdb" and "passdb". They aren't tied to each others
Timo Sirainen <tss@iki.fi>
parents: 917
diff changeset
57 mech-plain.c \
2346
13ed27a24f46 Added LOGIN SASL mechanism. Patch by Andrey Panin
Timo Sirainen <tss@iki.fi>
parents: 2267
diff changeset
58 mech-login.c \
1873
ed5e808d934f CRAM-MD5 mechanism by Joshua Goodall, plus some cleanups.
Timo Sirainen <tss@iki.fi>
parents: 1851
diff changeset
59 mech-cram-md5.c \
1035
fe49ece0f3ea We have now separate "userdb" and "passdb". They aren't tied to each others
Timo Sirainen <tss@iki.fi>
parents: 917
diff changeset
60 mech-digest-md5.c \
2377
8f5be0be3199 NTLM authentication. Patch by Andrey Panin
Timo Sirainen <tss@iki.fi>
parents: 2346
diff changeset
61 mech-ntlm.c \
4798
c04189d77a59 Added OTP and S/KEY authentication mechanisms. Patch by Andrey Panin.
Timo Sirainen <tss@iki.fi>
parents: 4638
diff changeset
62 mech-otp.c \
c04189d77a59 Added OTP and S/KEY authentication mechanisms. Patch by Andrey Panin.
Timo Sirainen <tss@iki.fi>
parents: 4638
diff changeset
63 mech-skey.c \
3683
28cca6317829 Added GSSAPI support. Patch by Jelmer Vernooij and some fixes by
Timo Sirainen <tss@iki.fi>
parents: 3667
diff changeset
64 mech-gssapi.c \
2428
abef2ac8843a Added Compuserve RPA authentication. Patch by Andrey Panin.
Timo Sirainen <tss@iki.fi>
parents: 2380
diff changeset
65 mech-rpa.c \
2267
d2e186f716d8 Added APOP authentication for POP3. Patch by Andrey Panin.
Timo Sirainen <tss@iki.fi>
parents: 2162
diff changeset
66 mech-apop.c \
4798
c04189d77a59 Added OTP and S/KEY authentication mechanisms. Patch by Andrey Panin.
Timo Sirainen <tss@iki.fi>
parents: 4638
diff changeset
67 otp-skey-common.c \
1035
fe49ece0f3ea We have now separate "userdb" and "passdb". They aren't tied to each others
Timo Sirainen <tss@iki.fi>
parents: 917
diff changeset
68 passdb.c \
3166
e6a487d80288 Restructuring of auth code. Balancer auth processes were a bad idea. Usually
Timo Sirainen <tss@iki.fi>
parents: 3077
diff changeset
69 passdb-blocking.c \
1851
d66d53f57e43 Added bsdauth support, patch by Dan Cross
Timo Sirainen <tss@iki.fi>
parents: 1702
diff changeset
70 passdb-bsdauth.c \
2798
54b29901a793 Added simple LRU cache for auth requests. Currently only for sql passdb.
Timo Sirainen <tss@iki.fi>
parents: 2796
diff changeset
71 passdb-cache.c \
1135
81930fff13cf passdb ldap added. fixes to userdb ldap.
Timo Sirainen <tss@iki.fi>
parents: 1093
diff changeset
72 passdb-ldap.c \
1035
fe49ece0f3ea We have now separate "userdb" and "passdb". They aren't tied to each others
Timo Sirainen <tss@iki.fi>
parents: 917
diff changeset
73 passdb-passwd.c \
fe49ece0f3ea We have now separate "userdb" and "passdb". They aren't tied to each others
Timo Sirainen <tss@iki.fi>
parents: 917
diff changeset
74 passdb-passwd-file.c \
fe49ece0f3ea We have now separate "userdb" and "passdb". They aren't tied to each others
Timo Sirainen <tss@iki.fi>
parents: 917
diff changeset
75 passdb-pam.c \
2162
95b2a6abc01e Added checkpassword passdb. userdb has only beginnings.
Timo Sirainen <tss@iki.fi>
parents: 2084
diff changeset
76 passdb-checkpassword.c \
1035
fe49ece0f3ea We have now separate "userdb" and "passdb". They aren't tied to each others
Timo Sirainen <tss@iki.fi>
parents: 917
diff changeset
77 passdb-shadow.c \
4638
689a02ca02d3 Tru64 SIA authentication support. Patch by Simon L Jackson
Timo Sirainen <tss@iki.fi>
parents: 4424
diff changeset
78 passdb-sia.c \
1035
fe49ece0f3ea We have now separate "userdb" and "passdb". They aren't tied to each others
Timo Sirainen <tss@iki.fi>
parents: 917
diff changeset
79 passdb-vpopmail.c \
2754
3c3ac12be307 Created generic asynchronous SQL API and implemented MySQL and PostgreSQL
Timo Sirainen <tss@iki.fi>
parents: 2736
diff changeset
80 passdb-sql.c \
1035
fe49ece0f3ea We have now separate "userdb" and "passdb". They aren't tied to each others
Timo Sirainen <tss@iki.fi>
parents: 917
diff changeset
81 userdb.c \
3166
e6a487d80288 Restructuring of auth code. Balancer auth processes were a bad idea. Usually
Timo Sirainen <tss@iki.fi>
parents: 3077
diff changeset
82 userdb-blocking.c \
1062
0522a0315d2f Cleanups, LDAP support compiles again and generally looks ok, even if it
Timo Sirainen <tss@iki.fi>
parents: 1035
diff changeset
83 userdb-ldap.c \
1035
fe49ece0f3ea We have now separate "userdb" and "passdb". They aren't tied to each others
Timo Sirainen <tss@iki.fi>
parents: 917
diff changeset
84 userdb-passwd.c \
fe49ece0f3ea We have now separate "userdb" and "passdb". They aren't tied to each others
Timo Sirainen <tss@iki.fi>
parents: 917
diff changeset
85 userdb-passwd-file.c \
3667
b7569a6a4ada Renamed userdb passdb to prefetch.
Timo Sirainen <tss@iki.fi>
parents: 3520
diff changeset
86 userdb-prefetch.c \
1035
fe49ece0f3ea We have now separate "userdb" and "passdb". They aren't tied to each others
Timo Sirainen <tss@iki.fi>
parents: 917
diff changeset
87 userdb-static.c \
1283
2d8af547a8b4 Added PostgreSQL support, patch by Alex Howansky
Timo Sirainen <tss@iki.fi>
parents: 1195
diff changeset
88 userdb-vpopmail.c \
2754
3c3ac12be307 Created generic asynchronous SQL API and implemented MySQL and PostgreSQL
Timo Sirainen <tss@iki.fi>
parents: 2736
diff changeset
89 userdb-sql.c
0
3b1985cbc908 Initial revision
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
90
5197
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 4798
diff changeset
91 headers = \
3065
29d83a8bb50d Reorganized the code to have less global/static variables.
Timo Sirainen <tss@iki.fi>
parents: 3064
diff changeset
92 auth.h \
2798
54b29901a793 Added simple LRU cache for auth requests. Currently only for sql passdb.
Timo Sirainen <tss@iki.fi>
parents: 2796
diff changeset
93 auth-cache.h \
1702
43815588dd6b Moved client side code for auth process handling to lib-auth. Some other login process cleanups.
Timo Sirainen <tss@iki.fi>
parents: 1465
diff changeset
94 auth-client-connection.h \
43815588dd6b Moved client side code for auth process handling to lib-auth. Some other login process cleanups.
Timo Sirainen <tss@iki.fi>
parents: 1465
diff changeset
95 auth-client-interface.h \
2776
150f8151c971 Added VERSION command and checking to authentication protocol.
Timo Sirainen <tss@iki.fi>
parents: 2754
diff changeset
96 auth-master-interface.h \
1702
43815588dd6b Moved client side code for auth process handling to lib-auth. Some other login process cleanups.
Timo Sirainen <tss@iki.fi>
parents: 1465
diff changeset
97 auth-master-connection.h \
3308
3f090bcaffcc Allow multiple master connections for a single listener.
Timo Sirainen <tss@iki.fi>
parents: 3166
diff changeset
98 auth-master-listener.h \
1150
18a2074a4d3d Support for dynamic authentication modules.
Timo Sirainen <tss@iki.fi>
parents: 1135
diff changeset
99 auth-module.h \
3064
2d33734b16d5 Split auth_request* functions from mech.c to auth-request.c
Timo Sirainen <tss@iki.fi>
parents: 3062
diff changeset
100 auth-request.h \
3074
3feb38ff17f5 Moving code around.
Timo Sirainen <tss@iki.fi>
parents: 3065
diff changeset
101 auth-request-handler.h \
3520
e2fe8222449d s/occured/occurred/
Timo Sirainen <tss@iki.fi>
parents: 3308
diff changeset
102 auth-stream.h \
3166
e6a487d80288 Restructuring of auth code. Balancer auth processes were a bad idea. Usually
Timo Sirainen <tss@iki.fi>
parents: 3077
diff changeset
103 auth-worker-client.h \
e6a487d80288 Restructuring of auth code. Balancer auth processes were a bad idea. Usually
Timo Sirainen <tss@iki.fi>
parents: 3077
diff changeset
104 auth-worker-server.h \
1093
b46e3ca71d66 missing db-ldap.h
Timo Sirainen <tss@iki.fi>
parents: 1062
diff changeset
105 db-ldap.h \
2754
3c3ac12be307 Created generic asynchronous SQL API and implemented MySQL and PostgreSQL
Timo Sirainen <tss@iki.fi>
parents: 2736
diff changeset
106 db-sql.h \
1062
0522a0315d2f Cleanups, LDAP support compiles again and generally looks ok, even if it
Timo Sirainen <tss@iki.fi>
parents: 1035
diff changeset
107 db-passwd-file.h \
0
3b1985cbc908 Initial revision
Timo Sirainen <tss@iki.fi>
parents:
diff changeset
108 common.h \
1035
fe49ece0f3ea We have now separate "userdb" and "passdb". They aren't tied to each others
Timo Sirainen <tss@iki.fi>
parents: 917
diff changeset
109 mech.h \
690
413227772e6f Moved mycrypt() into auth/ dir, so we don't have to link all programs with
Timo Sirainen <tss@iki.fi>
parents: 656
diff changeset
110 mycrypt.h \
4798
c04189d77a59 Added OTP and S/KEY authentication mechanisms. Patch by Andrey Panin.
Timo Sirainen <tss@iki.fi>
parents: 4638
diff changeset
111 otp-skey-common.h \
1035
fe49ece0f3ea We have now separate "userdb" and "passdb". They aren't tied to each others
Timo Sirainen <tss@iki.fi>
parents: 917
diff changeset
112 passdb.h \
3166
e6a487d80288 Restructuring of auth code. Balancer auth processes were a bad idea. Usually
Timo Sirainen <tss@iki.fi>
parents: 3077
diff changeset
113 passdb-blocking.h \
2798
54b29901a793 Added simple LRU cache for auth requests. Currently only for sql passdb.
Timo Sirainen <tss@iki.fi>
parents: 2796
diff changeset
114 passdb-cache.h \
1192
76321f65960d Fix realm usage with DIGEST-MD5. Support generating other password schemes
Timo Sirainen <tss@iki.fi>
parents: 1191
diff changeset
115 password-scheme.h \
1035
fe49ece0f3ea We have now separate "userdb" and "passdb". They aren't tied to each others
Timo Sirainen <tss@iki.fi>
parents: 917
diff changeset
116 userdb.h \
3166
e6a487d80288 Restructuring of auth code. Balancer auth processes were a bad idea. Usually
Timo Sirainen <tss@iki.fi>
parents: 3077
diff changeset
117 userdb-blocking.h \
1035
fe49ece0f3ea We have now separate "userdb" and "passdb". They aren't tied to each others
Timo Sirainen <tss@iki.fi>
parents: 917
diff changeset
118 userdb-vpopmail.h
2162
95b2a6abc01e Added checkpassword passdb. userdb has only beginnings.
Timo Sirainen <tss@iki.fi>
parents: 2084
diff changeset
119
5197
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 4798
diff changeset
120 if INSTALL_HEADERS
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 4798
diff changeset
121 pkginc_libdir=$(pkgincludedir)/src/auth
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 4798
diff changeset
122 pkginc_lib_HEADERS = $(headers)
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 4798
diff changeset
123 else
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 4798
diff changeset
124 noinst_HEADERS = $(headers)
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 4798
diff changeset
125 endif
e77e4457d95c Added --with-headers configure option to install .h files.
Timo Sirainen <tss@iki.fi>
parents: 4798
diff changeset
126
2162
95b2a6abc01e Added checkpassword passdb. userdb has only beginnings.
Timo Sirainen <tss@iki.fi>
parents: 2084
diff changeset
127 checkpassword_reply_LDADD = \
95b2a6abc01e Added checkpassword passdb. userdb has only beginnings.
Timo Sirainen <tss@iki.fi>
parents: 2084
diff changeset
128 ../lib/liblib.a
95b2a6abc01e Added checkpassword passdb. userdb has only beginnings.
Timo Sirainen <tss@iki.fi>
parents: 2084
diff changeset
129
2636
Timo Sirainen <tss@iki.fi>
parents: 2428
diff changeset
130 checkpassword_reply_sources = \
2162
95b2a6abc01e Added checkpassword passdb. userdb has only beginnings.
Timo Sirainen <tss@iki.fi>
parents: 2084
diff changeset
131 checkpassword-reply.c