[Xfce4-commits] [xfce/tumbler] 02/06: Fix finding libopenraw-0.1.0 due to changed pkg-config name

noreply at xfce.org noreply at xfce.org
Wed Jun 7 12:03:30 CEST 2017


This is an automated email from the git hooks/post-receive script.

a   l   i       p   u   s   h   e   d       a       c   o   m   m   i   t       t   o       b   r   a   n   c   h       x   f   c   e   -   4   .   1   2   
   in repository xfce/tumbler.

commit b4888b571f4b7b877b79178a348cf46d150680f1
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
---
 acinclude.m4 | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/acinclude.m4 b/acinclude.m4
index 66e79d1..72f79c4 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