Mercurial > dnsbl
annotate src/Makefile.am @ 211:4db1457cd11a stable-6-0-18
Extend auto-whitelisting when receiving mail even if the auto whitelist is specified in a parent context.
Fixes for Solaris from sm-archive.
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Sat, 22 Mar 2008 11:19:36 -0700 |
parents | d6531c702be3 |
children | d26b9551c9eb |
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) |
148
9330b8d6a56b
add documentation fixes, allow env_from target of inherit
carl
parents:
113
diff
changeset
|
10 dnsbl_LDADD = $(all_libraries) /usr/lib/libresolv.a -lmilter |
108 | 11 |
12 # default compile flags | |
162 | 13 dnsbl_CXXFLAGS = $(PTHREAD_CFLAGS) |
108 | 14 |