1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-14 11:33:14 +00:00

Fix compiling with x11 by setting argb default on

This commit is contained in:
Nikolas Garofil 2010-01-16 02:30:01 +01:00
parent a3aa80cab7
commit 8264fbe05e

View File

@ -427,10 +427,16 @@ dnl ARGB
dnl
AC_ARG_ENABLE([argb],
AC_HELP_STRING([--enable-argb], [enable if you want a argb visual [[default=no]]]),
[want_argb="$enableval"], [want_argb=no])
AC_HELP_STRING([--disable-argb], [disable if you do not want a argb visual @<:@default=yes@:>@]),
[want_argb="$enableval"], [want_argb=yes])
if test x$want_argb = xyes; then
if test "x$want_x11" != "xyes"; then
dnl silently disable if no x11
want_argb=no
else
AC_DEFINE(USE_ARGB, 1, [Define if you want argb visual support])
fi
fi
dnl