mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-17 04:37:19 +00:00
fa1051bd08
* geany-plugins-treebrowser/license checksum: Was changed to:
"TreeBrowser plugin is distributed under the same license as in geany."
Geany is GPLv2 which is part of geany-plugin's license.
* Remove explicit RDEPENDS:
* They caused cyclic dependencies making impossible anything but all
plugins
* Checked: Dependencies are set correct automatically
* Add geany-plugins-common to avoid cylcic dependencies
* All plugins that are enabled, build and pack properly. Before adding
geany-plugins to an image caused errors in do_rootfs due to empty
packages.
* Some plugins don't build with gtk3 - disable them
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
32 lines
1002 B
Diff
32 lines
1002 B
Diff
From 0c24f99ca4d4f64ea8584347ca6ae0d638d625a8 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Andreas=20M=C3=BCller?= <schnitzeltony@gmail.com>
|
|
Date: Mon, 18 Feb 2019 16:13:17 +0100
|
|
Subject: [PATCH] Use pkg-config to find gpgme
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Upstream-Status: Inappropriate [embedded specific]
|
|
|
|
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
|
---
|
|
build/bundled/gpgme.m4 | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/build/bundled/gpgme.m4 b/build/bundled/gpgme.m4
|
|
index 44bf43c..c9a8ae6 100644
|
|
--- a/build/bundled/gpgme.m4
|
|
+++ b/build/bundled/gpgme.m4
|
|
@@ -18,7 +18,7 @@ AC_DEFUN([_AM_PATH_GPGME_CONFIG],
|
|
if test "x$gpgme_config_prefix" != x ; then
|
|
GPGME_CONFIG="$gpgme_config_prefix/bin/gpgme-config"
|
|
fi
|
|
- AC_PATH_PROG(GPGME_CONFIG, gpgme-config, no)
|
|
+ GPGME_CONFIG="pkg-config gpgme"
|
|
|
|
if test "$GPGME_CONFIG" != "no" ; then
|
|
gpgme_version=`$GPGME_CONFIG --version`
|
|
--
|
|
2.20.1
|
|
|