diff options
author | Lennart Poettering <lennart@poettering.net> | 2005-10-19 00:10:02 +0000 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2005-10-19 00:10:02 +0000 |
commit | 16d9e30dd7fa052bd7e6dd37927d7f27bec90ef1 (patch) | |
tree | d52fcd4dfde907c278a29c76e59f899c92c1a4b4 /avahi-compat-libdns_sd | |
parent | d266407d3e6d8f2a8e14e8bd2f89fa8a4333613c (diff) |
* Compile tests only when --enable-tests was specified on the configure command line
* Build compat layers only when --enable-compat-{howl,libdns_sd} was passed to configure
* drop avahi_strlcpy() to reduce our code/API size
* replace getifname() with if_indextoname in avahi-dnsconfd
* declare environ if needed in avahi-dnsconfd
* drop some useless definitions like AVAHI_PUBLISH_NULL = 0
git-svn-id: file:///home/lennart/svn/public/avahi/trunk@819 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe
Diffstat (limited to 'avahi-compat-libdns_sd')
-rw-r--r-- | avahi-compat-libdns_sd/Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/avahi-compat-libdns_sd/Makefile.am b/avahi-compat-libdns_sd/Makefile.am index 2b65059..bd33bb0 100644 --- a/avahi-compat-libdns_sd/Makefile.am +++ b/avahi-compat-libdns_sd/Makefile.am @@ -23,6 +23,7 @@ AM_CFLAGS=-I$(top_srcdir) AM_CFLAGS+='-DDEBUG_TRAP=__asm__("int $$3")' if HAVE_DBUS +if ENABLE_COMPAT_LIBDNS_SD avahi_compat_libdns_sddir=$(includedir)/avahi-compat-libdns_sd @@ -30,7 +31,9 @@ avahi_compat_libdns_sd_HEADERS = dns_sd.h lib_LTLIBRARIES = libavahi-compat-libdns_sd.la +if ENABLE_TESTS noinst_PROGRAMS = txt-test +endif libavahi_compat_libdns_sd_la_SOURCES = \ dns_sd.h \ @@ -61,3 +64,4 @@ libdns_sd-test: libdns_sd-test.c libavahi-compat-libdns_sd.la CLEANFILES = libdns_sd-test.o libdns_sd-test endif +endif |