Mercurial > dnsbl
annotate src/Makefile.am @ 250:3218ab6af599
need --add-missing for newer systems
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Sun, 08 Apr 2012 11:47:45 -0700 |
parents | d8ee4c97b9ab |
children |
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) |
242
d8ee4c97b9ab
64 bit fixes for libresolv.a
Carl Byington <carl@five-ten-sg.com>
parents:
229
diff
changeset
|
10 dnsbl_LDADD = $(all_libraries) $(REGEXLIB) -lmilter -lresolv @LIBRESOLVDIR@/libresolv.a |
108 | 11 |
12 # default compile flags | |
162 | 13 dnsbl_CXXFLAGS = $(PTHREAD_CFLAGS) |
108 | 14 |