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:

committed by
Michael Natterer

parent
b430804b08
commit
12393ed0fc
10
ChangeLog
10
ChangeLog
@ -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>
|
2008-06-15 Sven Neumann <sven@gimp.org>
|
||||||
|
|
||||||
* configure.in: bumped version to 2.5.2.
|
* configure.in: bumped version to 2.5.2.
|
||||||
|
@ -938,7 +938,8 @@ if test "$gdk_target" = x11; then
|
|||||||
PKG_CHECK_MODULES(XFIXES, xfixes,
|
PKG_CHECK_MODULES(XFIXES, xfixes,
|
||||||
AC_DEFINE(HAVE_XFIXES, 1,
|
AC_DEFINE(HAVE_XFIXES, 1,
|
||||||
[Define to 1 to if the XFIXES X extension is available])
|
[Define to 1 to if the XFIXES X extension is available])
|
||||||
LIBSCREENSHOT="$LIBSCREENSHOT $XFIXES_LIBS")
|
LIBSCREENSHOT="$LIBSCREENSHOT $XFIXES_LIBS",
|
||||||
|
true)
|
||||||
|
|
||||||
else
|
else
|
||||||
enable_gimp_remote="no (building for $gdk_target)"
|
enable_gimp_remote="no (building for $gdk_target)"
|
||||||
|
Reference in New Issue
Block a user