Mercurial > masqmail
annotate src/Makefile.am @ 209:10da50168dab
replaced the MD5 implementation with the one of Solar Designer
Until now, the sample code of RFC 1321 was used. It had an ugly license.
Now we use the implementation of Solar Designer, which is in the Public Domain.
http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5
author | meillo@marmaro.de |
---|---|
date | Sun, 18 Jul 2010 21:58:15 +0200 |
parents | 116b0269c934 |
children | 5781ba87df95 |
rev | line source |
---|---|
0 | 1 SUBDIRS=base64 md5 libident |
2 | |
3 AM_CFLAGS=@CFLAGS@ @GLIB_CFLAGS@ -D_GNU_SOURCE -DG_DISABLE_DEPRECATED | |
4 | |
5 sbin_PROGRAMS=masqmail | |
6 bin_PROGRAMS=mservdetect | |
200
116b0269c934
reworked resolvtest; let it build; refactored in lookup.c
meillo@marmaro.de
parents:
192
diff
changeset
|
7 noinst_PROGRAMS=smtpsend readtest resolvtest |
0 | 8 |
9 masqmail_SOURCES=\ | |
10 dotlock.h\ | |
11 masqmail.h\ | |
12 readsock.h\ | |
13 smtp_out.h\ | |
14 lookup.h\ | |
15 accept.c\ | |
16 address.c\ | |
17 alias.c\ | |
18 child.c\ | |
19 connect.c\ | |
20 conf.c\ | |
21 deliver.c\ | |
22 dotlock.c\ | |
23 expand.c\ | |
24 fail_msg.c\ | |
25 header.c\ | |
26 interface.c\ | |
27 local.c\ | |
28 log.c\ | |
29 listen.c\ | |
30 lookup.c\ | |
31 masqmail.c\ | |
32 message.c\ | |
33 online.c\ | |
34 parse.c\ | |
35 peopen.c\ | |
36 peopen.h\ | |
37 permissions.c\ | |
38 readsock.c\ | |
39 rewrite.c\ | |
40 route.c\ | |
41 queue.c\ | |
42 smtp_in.c\ | |
43 smtp_out.c\ | |
44 spool.c\ | |
45 tables.c\ | |
46 timeival.c | |
47 | |
48 smtpsend_SOURCES=\ | |
49 smtpsend.c\ | |
50 masqmail.h\ | |
51 readsock.h\ | |
52 smtp_out.h\ | |
53 lookup.h\ | |
54 accept.c\ | |
55 address.c\ | |
56 child.c\ | |
57 connect.c\ | |
58 header.c\ | |
59 interface.c\ | |
60 lookup.c\ | |
61 message.c\ | |
62 parse.c\ | |
63 peopen.c\ | |
64 readsock.c\ | |
65 smtp_out.c | |
66 | |
67 mservdetect_SOURCES=\ | |
68 masqmail.h\ | |
69 readsock.h\ | |
70 mservdetect.c\ | |
71 readsock.c\ | |
72 peopen.c | |
73 | |
74 readtest_SOURCES=\ | |
75 readsock.c\ | |
76 readsock.h\ | |
77 readtest.c | |
78 | |
200
116b0269c934
reworked resolvtest; let it build; refactored in lookup.c
meillo@marmaro.de
parents:
192
diff
changeset
|
79 resolvtest_SOURCES=\ |
116b0269c934
reworked resolvtest; let it build; refactored in lookup.c
meillo@marmaro.de
parents:
192
diff
changeset
|
80 resolvtest.c\ |
116b0269c934
reworked resolvtest; let it build; refactored in lookup.c
meillo@marmaro.de
parents:
192
diff
changeset
|
81 lookup.c |
116b0269c934
reworked resolvtest; let it build; refactored in lookup.c
meillo@marmaro.de
parents:
192
diff
changeset
|
82 |
0 | 83 masqmail_LDADD=@RESOLV_LIBS@ @GLIB_LIBS@ @LOCKFILE_LIBS@ @MD5_LIBS@ @BASE64_LIBS@ @IDENT_LIBS@ |
84 smtpsend_LDADD=@RESOLV_LIBS@ @GLIB_LIBS@ @MD5_LIBS@ @BASE64_LIBS@ | |
85 mservdetect_LDADD=@GLIB_LIBS@ | |
86 readtest_LDADD=@GLIB_LIBS@ | |
200
116b0269c934
reworked resolvtest; let it build; refactored in lookup.c
meillo@marmaro.de
parents:
192
diff
changeset
|
87 resolvtest_LDADD=@RESOLV_LIBS@ @GLIB_LIBS@ @IDENT_LIBS@ |