[libdmapsharing/LIBDMAPSHARING_2_2] Do not use == with test in configure.ac; not POSIX Signed-off-by: W. Michael Petullo <mike flyn org>
- From: W. Michael Petullo <wmpetullo src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [libdmapsharing/LIBDMAPSHARING_2_2] Do not use == with test in configure.ac; not POSIX Signed-off-by: W. Michael Petullo <mike flyn org>
- Date: Thu, 20 Jan 2011 15:16:52 +0000 (UTC)
commit 904c681d62b374214bb09b81e974453d171d5c23
Author: W. Michael Petullo <mike flyn org>
Date: Wed Jan 19 19:32:08 2011 -0600
Do not use == with test in configure.ac; not POSIX
Signed-off-by: W. Michael Petullo <mike flyn org>
configure.ac | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 3780215..a03e296 100644
--- a/configure.ac
+++ b/configure.ac
@@ -154,7 +154,7 @@ if test x$HAVE_AVAHI_06 != xyes; then
HAVE_AVAHI_05=yes,
HAVE_AVAHI_05=no)
fi
-if test x$HAVE_AVAHI_06 == xyes || test x$HAVE_AVAHI_05 == xyes; then
+if test x$HAVE_AVAHI_06 = xyes || test x$HAVE_AVAHI_05 = xyes; then
HAVE_AVAHI=yes
else
HAVE_AVAHI=no
@@ -182,7 +182,7 @@ if test x"$WITH_MDNS" = xauto; then
AC_DEFINE(WITH_AVAHI, 1, [Define if mDNS/DNS-SD implementation uses Avahi])
USE_AVAHI=yes
AC_MSG_NOTICE([Detected Avahi, using it for mDNS/DNS-SD])
- if test x$HAVE_AVAHI_06 == xyes; then
+ if test x$HAVE_AVAHI_06 = xyes; then
AC_DEFINE(HAVE_AVAHI_0_6, 1, [Define if mDNS/DNS-SD implementation uses Avahi 0.6])
else
AC_DEFINE(HAVE_AVAHI_0_5, 1, [Define if mDNS/DNS-SD implementation uses Avahi 0.5])
@@ -246,7 +246,7 @@ if test x"$WITH_MDNS" = xavahi; then
USE_AVAHI=yes
AC_MSG_NOTICE([Using Avahi for mDNS/DNS-SD])
- if test x$HAVE_AVAHI_06 == xyes; then
+ if test x$HAVE_AVAHI_06 = xyes; then
AC_DEFINE(HAVE_AVAHI_0_6, 1, [Define if mDNS/DNS-SD implementation uses Avahi 0.6])
else
AC_DEFINE(HAVE_AVAHI_0_5, 1, [Define if mDNS/DNS-SD implementation uses Avahi 0.5])
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]