summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2006-04-29 23:09:37 +0000
committerLennart Poettering <lennart@poettering.net>2006-04-29 23:09:37 +0000
commit846f76e69afeca6e232f68cde0fef9f7c1b111e4 (patch)
tree0b1a3515360a0cf2e4293aa65f5095fbb58197c0
parentf18a66c3841a9d8a3f9e350f7111daac27b30271 (diff)
rename "legacy requests" to "legacy unicast mDNS requests"
git-svn-id: file:///home/lennart/svn/public/nss-mdns/trunk@100 0ee8848e-81ea-0310-a63a-f631d1a40d77
-rw-r--r--configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index d7fee24..90c10d9 100644
--- a/configure.ac
+++ b/configure.ac
@@ -135,10 +135,10 @@ if test "x$ENABLE_AVAHI" = "xyes" ; then
AC_DEFINE(ENABLE_AVAHI, [1], [Try to make use of a running avahi mDNS server before resolving on our own behalf])
fi
-### Enable legacy support?
+### Enable legacy unicast mDNS support?
AC_ARG_ENABLE(legacy,
- AC_HELP_STRING([--enable-legacy],[Enable legacy lookups when Avahi isn't available (default=yes)]),
+ AC_HELP_STRING([--enable-legacy],[Enable legacy unicast mDNS lookups when Avahi isn't available (default=yes)]),
[case "${enableval}" in
yes) ENABLE_LEGACY=yes ;;
no) ENABLE_LEGACY=no ;;
@@ -147,11 +147,11 @@ AC_ARG_ENABLE(legacy,
[ENABLE_LEGACY=yes]) dnl Default value
if test "x$ENABLE_AVAHI" = "xno" -a "x$ENABLE_LEGACY" = "xno"; then
- AC_MSG_ERROR(Can't disable legacy lookups if Avahi support is disabled)
+ AC_MSG_ERROR(Can't disable legacy unicast mDNS lookups if Avahi support is disabled)
fi
if test "x$ENABLE_LEGACY" = "xyes" ; then
- AC_DEFINE(ENABLE_LEGACY, [1], [Enable legacy lookups when Avahi isn't available])
+ AC_DEFINE(ENABLE_LEGACY, [1], [Enable legacy unicast mDNS lookups when Avahi isn't available])
fi
AM_CONDITIONAL([ENABLE_LEGACY], [test "x$ENABLE_LEGACY" = "xyes"])