in the check for xfixes, add "true" as action-if-not-found so it doesn't

2008-06-15  Michael Natterer  <mitch@gimp.org>

	* configure.in: in the check for xfixes, add "true" as
	action-if-not-found so it doesn't bail out when xfixes is not
	found.

	There seems to be something fishy with the PKG_CHECK_MODULES()
	macro since adding a simple comma should also count as empty 4th
	argument.


svn path=/trunk/; revision=25959
This commit is contained in:
Michael Natterer 2008-06-15 14:30:04 +00:00 committed by Michael Natterer
parent b430804b08
commit 12393ed0fc
2 changed files with 12 additions and 1 deletions

View File

@ -1,3 +1,13 @@
2008-06-15 Michael Natterer <mitch@gimp.org>
* configure.in: in the check for xfixes, add "true" as
action-if-not-found so it doesn't bail out when xfixes is not
found.
There seems to be something fishy with the PKG_CHECK_MODULES()
macro since adding a simple comma should also count as empty 4th
argument.
2008-06-15 Sven Neumann <sven@gimp.org>
* configure.in: bumped version to 2.5.2.

View File

@ -938,7 +938,8 @@ if test "$gdk_target" = x11; then
PKG_CHECK_MODULES(XFIXES, xfixes,
AC_DEFINE(HAVE_XFIXES, 1,
[Define to 1 to if the XFIXES X extension is available])
LIBSCREENSHOT="$LIBSCREENSHOT $XFIXES_LIBS")
LIBSCREENSHOT="$LIBSCREENSHOT $XFIXES_LIBS",
true)
else
enable_gimp_remote="no (building for $gdk_target)"