Final stage of s/ == xyes/ = xyes/.
authorRoman Bogorodskiy <mirrorbox@users.sourceforge.net>
Fri, 2 Sep 2005 14:17:31 +0000 (14:17 +0000)
committerRoman Bogorodskiy <mirrorbox@users.sourceforge.net>
Fri, 2 Sep 2005 14:17:31 +0000 (14:17 +0000)
git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@259 7f574dfc-610e-0410-a909-a81674777703

configure.in

index f8a83a8..0592fda 100644 (file)
@@ -87,8 +87,8 @@ AC_ARG_ENABLE(seti,
 [  --enable-seti           enable if you want SETI at Home stats [default=no]],
   [want_seti="$enableval"])
 
-AM_CONDITIONAL(BUILD_SETI, test x$want_seti == xyes)
-if test x$want_seti == xyes; then
+AM_CONDITIONAL(BUILD_SETI, test x$want_seti = xyes)
+if test x$want_seti = xyes; then
   AC_DEFINE(SETI, 1, [Define if you want SETI at Home stats])
 fi
 
@@ -101,8 +101,8 @@ AC_ARG_ENABLE(mpd,
 [  --enable-mpd            enable if you want MPD support [default=no]],
   [want_mpd="$enableval"])
 
-AM_CONDITIONAL(BUILD_MPD, test x$want_mpd == xyes)
-if test x$want_mpd == xyes; then
+AM_CONDITIONAL(BUILD_MPD, test x$want_mpd = xyes)
+if test x$want_mpd = xyes; then
   AC_DEFINE(MPD, 1, [Define if you want MPD support])
 fi
 
@@ -115,7 +115,7 @@ AC_ARG_ENABLE(cairo,
 [  --enable-cairo          enable if you want Cairo support [default=no]],
   [want_cairo="$enableval"])
 
-AM_CONDITIONAL(BUILD_CAIRO, test x$want_cairo == xyes)
+AM_CONDITIONAL(BUILD_CAIRO, test x$want_cairo = xyes)
 
 
 if test "$want_cairo" = "yes"; then
@@ -145,8 +145,8 @@ AC_ARG_ENABLE(mldonkey,
 [  --enable-mldonkey       enable if you want MLDonkey support [default=no]],
   [want_mldonkey="$enableval"])
 
-AM_CONDITIONAL(BUILD_MLDONKEY, test x$want_mldonkey == xyes)
-if test x$want_mldonkey == xyes; then
+AM_CONDITIONAL(BUILD_MLDONKEY, test x$want_mldonkey = xyes)
+if test x$want_mldonkey = xyes; then
   AC_DEFINE(MLDONKEY, 1, [Define if you want MLDonkey support])
 fi