[Xfce4-commits] [xfce/tumbler] 01/02: Fix finding libopenraw-0.1.0 due to changed pkg-config name
noreply at xfce.org
noreply at xfce.org
Mon May 29 19:58:40 CEST 2017
This is an automated email from the git hooks/post-receive script.
ali pushed a commit to branch master
in repository xfce/tumbler.
commit 7e5ddd570294bef4578831e20db8a85d225065b5
Author: Michał Górny <mgorny at gentoo.org>
Date: Sun Feb 19 10:17:40 2017 +0100
Fix finding libopenraw-0.1.0 due to changed pkg-config name
Bug: https://bugzilla.xfce.org/show_bug.cgi?id=13201
Signed-off-by: Ali Abdallah <aliovx at gmail.com>
---
acinclude.m4 | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/acinclude.m4 b/acinclude.m4
index fb62e9e..546e2fe 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -233,7 +233,11 @@ if test x"$ac_tumbler_raw_thumbnailer" = x"yes"; then
PKG_CHECK_MODULES([GDK_PIXBUF], [gdk-pixbuf-2.0 >= 2.14],
[
dnl Check for libopenraw
- PKG_CHECK_MODULES([LIBOPENRAW_GNOME], [libopenraw-gnome-1.0 >= 0.0.4], [], [ac_tumbler_raw_thumbnailer=no])
+ dnl Note: 0.1.0 release changed the pkg-config name from -1.0 to -0.1
+ PKG_CHECK_MODULES([LIBOPENRAW_GNOME], [libopenraw-gnome-0.1 >= 0.0.4], [],
+ [
+ PKG_CHECK_MODULES([LIBOPENRAW_GNOME], [libopenraw-gnome-1.0 >= 0.0.4], [], [ac_tumbler_raw_thumbnailer=no])
+ ])
], [ac_tumbler_raw_thumbnailer=no])
fi
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Xfce4-commits
mailing list