1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2024-11-20 11:55:20 +00:00

Enable weather if XOAP is enabled.

This commit is contained in:
Brenden Matthews 2009-07-20 12:53:25 -06:00
parent 4872b4984f
commit 060517006c

View File

@ -362,6 +362,9 @@ AC_ARG_ENABLE([xoap],
AC_HELP_STRING([--enable-xoap], [enable if you want weather xoap support @<:@default=no@:>@]), AC_HELP_STRING([--enable-xoap], [enable if you want weather xoap support @<:@default=no@:>@]),
[want_xoap="$enableval"], [want_xoap=no]) [want_xoap="$enableval"], [want_xoap=no])
# #
if test x$want_xoap = xyes; then
want_weather=yes
fi
AM_CONDITIONAL(BUILD_WEATHER, test x$want_weather = xyes) AM_CONDITIONAL(BUILD_WEATHER, test x$want_weather = xyes)
AM_CONDITIONAL(BUILD_XOAP, test x$want_xoap = xyes) AM_CONDITIONAL(BUILD_XOAP, test x$want_xoap = xyes)
if test x$want_weather = xyes; then if test x$want_weather = xyes; then