From d1c038f7ba88f05345d46c97695316717b1a6a5c Mon Sep 17 00:00:00 2001 From: Roman Bogorodskiy Date: Fri, 2 Sep 2005 14:17:31 +0000 Subject: [PATCH] Final stage of s/ == xyes/ = xyes/. git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@259 7f574dfc-610e-0410-a909-a81674777703 --- configure.in | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/configure.in b/configure.in index f8a83a88..0592fda9 100644 --- a/configure.in +++ b/configure.in @@ -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