also check for libwnck3, will have to be dependent on gtk3 anyway

This commit is contained in:
Landry Breuil
2014-12-08 22:36:25 +01:00
parent f327226643
commit 15863295cb

View File

@@ -79,6 +79,8 @@ XDT_CHECK_OPTIONAL_PACKAGE([GTK3],
[gtk+-3.0], [3.2.0], [gtk3],
[GTK+ 3 support], [no])
AM_CONDITIONAL([USE_GTK3], [test "x$GTK3_FOUND" = "xyes"])
XDT_CHECK_OPTIONAL_PACKAGE([WNCK3], [libwnck-3.0], [3.2], [wnck3], [building with libwnck3 for window icons/names], [no])
AM_CONDITIONAL([USE_WNCK3], [test x"$WNCK3_FOUND" = x"yes"])
dnl ***********************************
dnl ********** Check for skel *********
@@ -153,7 +155,11 @@ echo
echo "Build Configuration:"
echo
echo "* Gksu: ${GKSU_VERSION:-no}"
if test "x$WNCK3_FOUND" = "xyes" ; then
echo "* Wnck: ${WNCK3_VERSION:-no}"
else
echo "* Wnck: ${WNCK_VERSION:-no}"
fi
echo "* Cairo: ${CAIRO_VERSION}"
if test "x$GTK3_FOUND" = "xyes" ; then
echo "* GTK+: ${GTK3_VERSION}"