masqmail
diff src/Makefile.am @ 200:116b0269c934
reworked resolvtest; let it build; refactored in lookup.c
the resolvtest helper and code test tool was available in the code
but did not get built
I moved it to resolvtest.c and included it into the build process
the define RESOLV_TEST was removed
author | meillo@marmaro.de |
---|---|
date | Fri, 16 Jul 2010 12:53:07 +0200 |
parents | 89f951be358f |
children | 5781ba87df95 |
line diff
1.1 --- a/src/Makefile.am Fri Jul 16 12:39:14 2010 +0200 1.2 +++ b/src/Makefile.am Fri Jul 16 12:53:07 2010 +0200 1.3 @@ -4,7 +4,7 @@ 1.4 1.5 sbin_PROGRAMS=masqmail 1.6 bin_PROGRAMS=mservdetect 1.7 -noinst_PROGRAMS=smtpsend readtest 1.8 +noinst_PROGRAMS=smtpsend readtest resolvtest 1.9 1.10 masqmail_SOURCES=\ 1.11 dotlock.h\ 1.12 @@ -76,7 +76,12 @@ 1.13 readsock.h\ 1.14 readtest.c 1.15 1.16 +resolvtest_SOURCES=\ 1.17 + resolvtest.c\ 1.18 + lookup.c 1.19 + 1.20 masqmail_LDADD=@RESOLV_LIBS@ @GLIB_LIBS@ @LOCKFILE_LIBS@ @MD5_LIBS@ @BASE64_LIBS@ @IDENT_LIBS@ 1.21 smtpsend_LDADD=@RESOLV_LIBS@ @GLIB_LIBS@ @MD5_LIBS@ @BASE64_LIBS@ 1.22 mservdetect_LDADD=@GLIB_LIBS@ 1.23 readtest_LDADD=@GLIB_LIBS@ 1.24 +resolvtest_LDADD=@RESOLV_LIBS@ @GLIB_LIBS@ @IDENT_LIBS@