1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-02-02 12:08:33 +00:00

Final stage of s/ == xyes/ = xyes/.

git-svn-id: https://conky.svn.sourceforge.net/svnroot/conky/trunk/conky@259 7f574dfc-610e-0410-a909-a81674777703
This commit is contained in:
Roman Bogorodskiy 2005-09-02 14:17:31 +00:00
parent 5e2646e70f
commit d1c038f7ba

View 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