Mercurial > dnsbl
annotate src/Makefile.am @ 228:87e760b2b1b9
Added tag stable-6-0-21 for changeset 3fee608becbc
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Sat, 03 Jan 2009 15:49:00 -0800 |
parents | da9e7f1c8160 |
children | b3652d1ae010 |
rev | line source |
---|---|
108 | 1 sbin_PROGRAMS = dnsbl |
211
4db1457cd11a
Extend auto-whitelisting when receiving mail even if the auto whitelist is specified in a parent context.
Carl Byington <carl@five-ten-sg.com>
parents:
178
diff
changeset
|
2 dnsbl_SOURCES = dnsbl.cpp dnsbl.h dccifd.cpp dccifd.h spamass.cpp spamass.h context.cpp context.h tokenizer.cpp tokenizer.h scanner.cpp scanner.h includes.h daemon.h |
4db1457cd11a
Extend auto-whitelisting when receiving mail even if the auto whitelist is specified in a parent context.
Carl Byington <carl@five-ten-sg.com>
parents:
178
diff
changeset
|
3 EXTRA_DIST = daemon.c test.cpp |
108 | 4 |
5 # set the include path found by configure | |
6 INCLUDES= $(all_includes) | |
7 | |
8 # the library search path. | |
162 | 9 dnsbl_LDFLAGS = $(PTHREAD_CFLAGS) $(PTHREAD_LIBS) |
223
da9e7f1c8160
fix unsigned signed compare, back to mixed -lresolv and libresolv.a with auto requires
Carl Byington <carl@five-ten-sg.com>
parents:
221
diff
changeset
|
10 dnsbl_LDADD = $(all_libraries) -lmilter -lresolv /usr/lib/libresolv.a |
108 | 11 |
12 # default compile flags | |
162 | 13 dnsbl_CXXFLAGS = $(PTHREAD_CFLAGS) |
108 | 14 |