2007-07-03 Ross Burton <ross@openedhand.com>

* configure.ac:
	Check for XFixes 4 and above.
This commit is contained in:
Ross Burton 2007-07-03 15:06:40 +00:00
parent b9e486f587
commit 52a3eb0263
2 changed files with 8 additions and 2 deletions

View File

@ -1,3 +1,8 @@
2007-07-03 Ross Burton <ross@openedhand.com>
* configure.ac:
Check for XFixes 4 and above.
2007-07-02 Tomas Frydrych <tf@openedhand.com>
* clutter/clutter-actor.h:

View File

@ -86,9 +86,10 @@ then
fi
fi
if $PKG_CONFIG --exists xfixes ; then
PKG_CHECK_MODULES(XFIXES, xfixes >= 4, [have_xfixes=yes], [have_xfixes=no])
if test x$have_xfixes = xyes
then
AC_DEFINE(HAVE_XFIXES, 1, Have the XFIXES X extension)
X11_LIBS="$X11_LIBS -lXfixes"
fi