mirror of https://github.com/GNOME/gimp.git
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:
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>
|
||||
|
||||
* configure.in: bumped version to 2.5.2.
|
||||
|
|
|
@ -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)"
|
||||
|
|
Loading…
Reference in New Issue