mirror of
https://git.yoctoproject.org/poky
synced 2026-06-03 01:40:07 +00:00
gpgme: 1.4.3 -> 1.5.4
* Update pkgconfig.patch * Remove gpgme-fix-CVE-2014-3564.patch since it is a backport patch * The license checksum of src/gpgme.h.in is changed because it added the year 2014, the conten are the same. * Remove --without-gpgsm --with-g13 --with-gpgconf --with-gpg from EXTRA_OECONF, it doesn't have these options any more, and the values will checked located at runtime. Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
bd418a059b
commit
6e54d3bc95
@@ -1,56 +0,0 @@
|
|||||||
Upstream-Status: Backport
|
|
||||||
|
|
||||||
Backport patch to fix CVE-2014-3564.
|
|
||||||
|
|
||||||
http://git.gnupg.org/cgi-bin/gitweb.cgi?p=gpgme.git;a=commit;h=2cbd76f7911fc215845e89b50d6af5ff4a83dd77
|
|
||||||
|
|
||||||
Signed-off-by: Kai Kang <kai.kang@windriver.com>
|
|
||||||
---
|
|
||||||
From 2cbd76f7911fc215845e89b50d6af5ff4a83dd77 Mon Sep 17 00:00:00 2001
|
|
||||||
From: Werner Koch <wk@gnupg.org>
|
|
||||||
Date: Wed, 30 Jul 2014 11:04:55 +0200
|
|
||||||
Subject: [PATCH 1/1] Fix possible realloc overflow for gpgsm and uiserver
|
|
||||||
engines.
|
|
||||||
|
|
||||||
After a realloc (realloc is also used for initial alloc) the allocated
|
|
||||||
size if the buffer is not correctly recorded. Thus an overflow can be
|
|
||||||
introduced by receiving data with different line lengths in a specific
|
|
||||||
order. This is not easy exploitable because libassuan constructs the
|
|
||||||
line. However a crash has been reported and thus it might be possible
|
|
||||||
to constructs an exploit.
|
|
||||||
|
|
||||||
CVE-id: CVE-2014-3564
|
|
||||||
Reported-by: Tomáš Trnka
|
|
||||||
---
|
|
||||||
src/engine-gpgsm.c | 2 +-
|
|
||||||
src/engine-uiserver.c | 2 +-
|
|
||||||
3 files changed, 5 insertions(+), 2 deletions(-)
|
|
||||||
|
|
||||||
diff --git a/src/engine-gpgsm.c b/src/engine-gpgsm.c
|
|
||||||
index 8ec1598..3a83757 100644
|
|
||||||
--- a/src/engine-gpgsm.c
|
|
||||||
+++ b/src/engine-gpgsm.c
|
|
||||||
@@ -836,7 +836,7 @@ status_handler (void *opaque, int fd)
|
|
||||||
else
|
|
||||||
{
|
|
||||||
*aline = newline;
|
|
||||||
- gpgsm->colon.attic.linesize += linelen + 1;
|
|
||||||
+ gpgsm->colon.attic.linesize = *alinelen + linelen + 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!err)
|
|
||||||
diff --git a/src/engine-uiserver.c b/src/engine-uiserver.c
|
|
||||||
index 2738c36..a7184b7 100644
|
|
||||||
--- a/src/engine-uiserver.c
|
|
||||||
+++ b/src/engine-uiserver.c
|
|
||||||
@@ -698,7 +698,7 @@ status_handler (void *opaque, int fd)
|
|
||||||
else
|
|
||||||
{
|
|
||||||
*aline = newline;
|
|
||||||
- uiserver->colon.attic.linesize += linelen + 1;
|
|
||||||
+ uiserver->colon.attic.linesize = *alinelen + linelen + 1;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
if (!err)
|
|
||||||
--
|
|
||||||
2.1.4
|
|
||||||
+54
-53
@@ -4,11 +4,11 @@ simpler and less error prone when cross compiling.
|
|||||||
Upstream-Status: Rejected [Upstream not interested in pkg-config support]
|
Upstream-Status: Rejected [Upstream not interested in pkg-config support]
|
||||||
RP 2015/4/17
|
RP 2015/4/17
|
||||||
|
|
||||||
Index: gpgme-1.4.3/configure.ac
|
diff --git a/configure.ac b/configure.ac
|
||||||
===================================================================
|
index 298a22b..c778b61 100644
|
||||||
--- gpgme-1.4.3.orig/configure.ac
|
--- a/configure.ac
|
||||||
+++ gpgme-1.4.3/configure.ac
|
+++ b/configure.ac
|
||||||
@@ -1058,6 +1058,7 @@ AC_CONFIG_FILES(Makefile src/Makefile
|
@@ -622,6 +622,7 @@ AC_CONFIG_FILES(Makefile src/Makefile
|
||||||
src/versioninfo.rc
|
src/versioninfo.rc
|
||||||
src/gpgme.h)
|
src/gpgme.h)
|
||||||
AC_CONFIG_FILES(src/gpgme-config, chmod +x src/gpgme-config)
|
AC_CONFIG_FILES(src/gpgme-config, chmod +x src/gpgme-config)
|
||||||
@@ -16,13 +16,13 @@ Index: gpgme-1.4.3/configure.ac
|
|||||||
AC_CONFIG_FILES([lang/Makefile lang/cl/Makefile lang/cl/gpgme.asd])
|
AC_CONFIG_FILES([lang/Makefile lang/cl/Makefile lang/cl/gpgme.asd])
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|
||||||
Index: gpgme-1.4.3/src/Makefile.am
|
diff --git a/src/Makefile.am b/src/Makefile.am
|
||||||
===================================================================
|
index 58922f9..40d0dca 100644
|
||||||
--- gpgme-1.4.3.orig/src/Makefile.am
|
--- a/src/Makefile.am
|
||||||
+++ gpgme-1.4.3/src/Makefile.am
|
+++ b/src/Makefile.am
|
||||||
@@ -20,11 +20,13 @@
|
@@ -20,11 +20,13 @@
|
||||||
|
|
||||||
# Note: moc_kdpipeiodevice should actually be a dependcy below.
|
# Note: moc_kdpipeiodevice should actually be a dependecy below.
|
||||||
EXTRA_DIST = gpgme-config.in gpgme.m4 libgpgme.vers ChangeLog-2011 \
|
EXTRA_DIST = gpgme-config.in gpgme.m4 libgpgme.vers ChangeLog-2011 \
|
||||||
- gpgme.h.in versioninfo.rc.in gpgme.def moc_kdpipeiodevice.cpp
|
- gpgme.h.in versioninfo.rc.in gpgme.def moc_kdpipeiodevice.cpp
|
||||||
+ gpgme.h.in versioninfo.rc.in gpgme.def moc_kdpipeiodevice.cpp gpgme.pc.in gpgme-pthread.pc.in
|
+ gpgme.h.in versioninfo.rc.in gpgme.def moc_kdpipeiodevice.cpp gpgme.pc.in gpgme-pthread.pc.in
|
||||||
@@ -34,32 +34,12 @@ Index: gpgme-1.4.3/src/Makefile.am
|
|||||||
+pkgconfig_DATA = gpgme.pc gpgme-pthread.pc
|
+pkgconfig_DATA = gpgme.pc gpgme-pthread.pc
|
||||||
nodist_include_HEADERS = gpgme.h
|
nodist_include_HEADERS = gpgme.h
|
||||||
|
|
||||||
if HAVE_PTHREAD
|
bin_PROGRAMS = gpgme-tool
|
||||||
Index: gpgme-1.4.3/src/gpgme.pc.in
|
diff --git a/src/gpgme-pthread.pc.in b/src/gpgme-pthread.pc.in
|
||||||
===================================================================
|
new file mode 100644
|
||||||
|
index 0000000..980a48e
|
||||||
--- /dev/null
|
--- /dev/null
|
||||||
+++ gpgme-1.4.3/src/gpgme.pc.in
|
+++ b/src/gpgme-pthread.pc.in
|
||||||
@@ -0,0 +1,15 @@
|
|
||||||
+prefix=@prefix@
|
|
||||||
+exec_prefix=@exec_prefix@
|
|
||||||
+libdir=@libdir@
|
|
||||||
+includedir=@includedir@
|
|
||||||
+
|
|
||||||
+# API info
|
|
||||||
+api_version=@GPGME_CONFIG_API_VERSION@
|
|
||||||
+host=@GPGME_CONFIG_HOST@
|
|
||||||
+
|
|
||||||
+Name: gpgme
|
|
||||||
+Description: GnuPG Made Easy (GPGME) is a C language library that allows to addsupport for cryptography to a program.
|
|
||||||
+Version: @VERSION@
|
|
||||||
+Libs: -L${libdir} -lgpgme
|
|
||||||
+Cflags: -I${includedir}
|
|
||||||
+Requires: libassuan gpg-error
|
|
||||||
\ No newline at end of file
|
|
||||||
Index: gpgme-1.4.3/src/gpgme-pthread.pc.in
|
|
||||||
===================================================================
|
|
||||||
--- /dev/null
|
|
||||||
+++ gpgme-1.4.3/src/gpgme-pthread.pc.in
|
|
||||||
@@ -0,0 +1,15 @@
|
@@ -0,0 +1,15 @@
|
||||||
+prefix=@prefix@
|
+prefix=@prefix@
|
||||||
+exec_prefix=@exec_prefix@
|
+exec_prefix=@exec_prefix@
|
||||||
@@ -76,12 +56,12 @@ Index: gpgme-1.4.3/src/gpgme-pthread.pc.in
|
|||||||
+Libs: -L${libdir} -lgpgme-pthread -lpthread
|
+Libs: -L${libdir} -lgpgme-pthread -lpthread
|
||||||
+Cflags: -I${includedir}
|
+Cflags: -I${includedir}
|
||||||
+Requires: libassuan gpg-error
|
+Requires: libassuan gpg-error
|
||||||
Index: gpgme-1.4.3/src/gpgme.m4
|
diff --git a/src/gpgme.m4 b/src/gpgme.m4
|
||||||
===================================================================
|
index 6c2be44..d8a75cb 100644
|
||||||
--- gpgme-1.4.3.orig/src/gpgme.m4
|
--- a/src/gpgme.m4
|
||||||
+++ gpgme-1.4.3/src/gpgme.m4
|
+++ b/src/gpgme.m4
|
||||||
@@ -36,7 +36,7 @@ dnl [ACTION-IF-FOUND [, AC
|
@@ -79,7 +79,7 @@ dnl config script does not match the host specification the script
|
||||||
dnl Test for libgpgme and define GPGME_CFLAGS and GPGME_LIBS.
|
dnl is added to the gpg_config_script_warn variable.
|
||||||
dnl
|
dnl
|
||||||
AC_DEFUN([AM_PATH_GPGME],
|
AC_DEFUN([AM_PATH_GPGME],
|
||||||
-[ AC_REQUIRE([_AM_PATH_GPGME_CONFIG])dnl
|
-[ AC_REQUIRE([_AM_PATH_GPGME_CONFIG])dnl
|
||||||
@@ -89,11 +69,10 @@ Index: gpgme-1.4.3/src/gpgme.m4
|
|||||||
tmp=ifelse([$1], ,1:0.4.2,$1)
|
tmp=ifelse([$1], ,1:0.4.2,$1)
|
||||||
if echo "$tmp" | grep ':' >/dev/null 2>/dev/null ; then
|
if echo "$tmp" | grep ':' >/dev/null 2>/dev/null ; then
|
||||||
req_gpgme_api=`echo "$tmp" | sed 's/\(.*\):\(.*\)/\1/'`
|
req_gpgme_api=`echo "$tmp" | sed 's/\(.*\):\(.*\)/\1/'`
|
||||||
@@ -45,37 +45,12 @@ AC_DEFUN([AM_PATH_GPGME],
|
@@ -89,36 +89,12 @@ AC_DEFUN([AM_PATH_GPGME],
|
||||||
req_gpgme_api=0
|
|
||||||
min_gpgme_version="$tmp"
|
min_gpgme_version="$tmp"
|
||||||
fi
|
fi
|
||||||
-
|
|
||||||
- AC_MSG_CHECKING(for GPGME - version >= $min_gpgme_version)
|
- AC_MSG_CHECKING(for GPGME - version >= $min_gpgme_version)
|
||||||
- ok=no
|
- ok=no
|
||||||
- if test "$GPGME_CONFIG" != "no" ; then
|
- if test "$GPGME_CONFIG" != "no" ; then
|
||||||
@@ -129,7 +108,7 @@ Index: gpgme-1.4.3/src/gpgme.m4
|
|||||||
if test "$tmp" -gt 0 ; then
|
if test "$tmp" -gt 0 ; then
|
||||||
if test "$req_gpgme_api" -ne "$tmp" ; then
|
if test "$req_gpgme_api" -ne "$tmp" ; then
|
||||||
ok=no
|
ok=no
|
||||||
@@ -84,18 +59,10 @@ AC_DEFUN([AM_PATH_GPGME],
|
@@ -127,19 +103,11 @@ AC_DEFUN([AM_PATH_GPGME],
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
if test $ok = yes; then
|
if test $ok = yes; then
|
||||||
@@ -137,6 +116,7 @@ Index: gpgme-1.4.3/src/gpgme.m4
|
|||||||
- GPGME_LIBS=`$GPGME_CONFIG --libs`
|
- GPGME_LIBS=`$GPGME_CONFIG --libs`
|
||||||
- AC_MSG_RESULT(yes)
|
- AC_MSG_RESULT(yes)
|
||||||
ifelse([$2], , :, [$2])
|
ifelse([$2], , :, [$2])
|
||||||
|
_AM_PATH_GPGME_CONFIG_HOST_CHECK
|
||||||
else
|
else
|
||||||
- GPGME_CFLAGS=""
|
- GPGME_CFLAGS=""
|
||||||
- GPGME_LIBS=""
|
- GPGME_LIBS=""
|
||||||
@@ -148,7 +128,7 @@ Index: gpgme-1.4.3/src/gpgme.m4
|
|||||||
])
|
])
|
||||||
|
|
||||||
dnl AM_PATH_GPGME_PTHREAD([MINIMUM-VERSION,
|
dnl AM_PATH_GPGME_PTHREAD([MINIMUM-VERSION,
|
||||||
@@ -104,7 +71,7 @@ dnl Test for libgpgme and define GPGME_P
|
@@ -148,7 +116,7 @@ dnl Test for libgpgme and define GPGME_PTHREAD_CFLAGS
|
||||||
dnl and GPGME_PTHREAD_LIBS.
|
dnl and GPGME_PTHREAD_LIBS.
|
||||||
dnl
|
dnl
|
||||||
AC_DEFUN([AM_PATH_GPGME_PTHREAD],
|
AC_DEFUN([AM_PATH_GPGME_PTHREAD],
|
||||||
@@ -157,7 +137,7 @@ Index: gpgme-1.4.3/src/gpgme.m4
|
|||||||
tmp=ifelse([$1], ,1:0.4.2,$1)
|
tmp=ifelse([$1], ,1:0.4.2,$1)
|
||||||
if echo "$tmp" | grep ':' >/dev/null 2>/dev/null ; then
|
if echo "$tmp" | grep ':' >/dev/null 2>/dev/null ; then
|
||||||
req_gpgme_api=`echo "$tmp" | sed 's/\(.*\):\(.*\)/\1/'`
|
req_gpgme_api=`echo "$tmp" | sed 's/\(.*\):\(.*\)/\1/'`
|
||||||
@@ -114,38 +81,13 @@ AC_DEFUN([AM_PATH_GPGME_PTHREAD],
|
@@ -158,38 +126,12 @@ AC_DEFUN([AM_PATH_GPGME_PTHREAD],
|
||||||
min_gpgme_version="$tmp"
|
min_gpgme_version="$tmp"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -189,7 +169,6 @@ Index: gpgme-1.4.3/src/gpgme.m4
|
|||||||
- fi
|
- fi
|
||||||
- fi
|
- fi
|
||||||
+ PKG_CHECK_MODULES(GPGME_PTHREAD, [gpgme-pthread >= $min_gpgme_version], [ok=yes], [ok=no])
|
+ PKG_CHECK_MODULES(GPGME_PTHREAD, [gpgme-pthread >= $min_gpgme_version], [ok=yes], [ok=no])
|
||||||
+
|
|
||||||
if test $ok = yes; then
|
if test $ok = yes; then
|
||||||
# If we have a recent GPGME, we should also check that the
|
# If we have a recent GPGME, we should also check that the
|
||||||
# API is compatible.
|
# API is compatible.
|
||||||
@@ -199,7 +178,7 @@ Index: gpgme-1.4.3/src/gpgme.m4
|
|||||||
if test "$tmp" -gt 0 ; then
|
if test "$tmp" -gt 0 ; then
|
||||||
if test "$req_gpgme_api" -ne "$tmp" ; then
|
if test "$req_gpgme_api" -ne "$tmp" ; then
|
||||||
ok=no
|
ok=no
|
||||||
@@ -154,18 +96,10 @@ AC_DEFUN([AM_PATH_GPGME_PTHREAD],
|
@@ -198,19 +140,11 @@ AC_DEFUN([AM_PATH_GPGME_PTHREAD],
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
if test $ok = yes; then
|
if test $ok = yes; then
|
||||||
@@ -207,6 +186,7 @@ Index: gpgme-1.4.3/src/gpgme.m4
|
|||||||
- GPGME_PTHREAD_LIBS=`$GPGME_CONFIG --thread=pthread --libs`
|
- GPGME_PTHREAD_LIBS=`$GPGME_CONFIG --thread=pthread --libs`
|
||||||
- AC_MSG_RESULT(yes)
|
- AC_MSG_RESULT(yes)
|
||||||
ifelse([$2], , :, [$2])
|
ifelse([$2], , :, [$2])
|
||||||
|
_AM_PATH_GPGME_CONFIG_HOST_CHECK
|
||||||
else
|
else
|
||||||
- GPGME_PTHREAD_CFLAGS=""
|
- GPGME_PTHREAD_CFLAGS=""
|
||||||
- GPGME_PTHREAD_LIBS=""
|
- GPGME_PTHREAD_LIBS=""
|
||||||
@@ -218,7 +198,7 @@ Index: gpgme-1.4.3/src/gpgme.m4
|
|||||||
])
|
])
|
||||||
|
|
||||||
|
|
||||||
@@ -184,36 +118,13 @@ AC_DEFUN([AM_PATH_GPGME_GLIB],
|
@@ -229,36 +163,12 @@ AC_DEFUN([AM_PATH_GPGME_GLIB],
|
||||||
min_gpgme_version="$tmp"
|
min_gpgme_version="$tmp"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@@ -248,7 +228,6 @@ Index: gpgme-1.4.3/src/gpgme.m4
|
|||||||
- fi
|
- fi
|
||||||
- fi
|
- fi
|
||||||
+ PKG_CHECK_MODULES(GPGME_GLIB, [gpgme >= $min_gpgme_version glib-2.0], [ok=yes], [ok=no])
|
+ PKG_CHECK_MODULES(GPGME_GLIB, [gpgme >= $min_gpgme_version glib-2.0], [ok=yes], [ok=no])
|
||||||
+
|
|
||||||
if test $ok = yes; then
|
if test $ok = yes; then
|
||||||
# If we have a recent GPGME, we should also check that the
|
# If we have a recent GPGME, we should also check that the
|
||||||
# API is compatible.
|
# API is compatible.
|
||||||
@@ -258,7 +237,7 @@ Index: gpgme-1.4.3/src/gpgme.m4
|
|||||||
if test "$tmp" -gt 0 ; then
|
if test "$tmp" -gt 0 ; then
|
||||||
if test "$req_gpgme_api" -ne "$tmp" ; then
|
if test "$req_gpgme_api" -ne "$tmp" ; then
|
||||||
ok=no
|
ok=no
|
||||||
@@ -222,17 +133,9 @@ AC_DEFUN([AM_PATH_GPGME_GLIB],
|
@@ -267,17 +177,9 @@ AC_DEFUN([AM_PATH_GPGME_GLIB],
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
if test $ok = yes; then
|
if test $ok = yes; then
|
||||||
@@ -266,6 +245,7 @@ Index: gpgme-1.4.3/src/gpgme.m4
|
|||||||
- GPGME_GLIB_LIBS=`$GPGME_CONFIG --glib --libs`
|
- GPGME_GLIB_LIBS=`$GPGME_CONFIG --glib --libs`
|
||||||
- AC_MSG_RESULT(yes)
|
- AC_MSG_RESULT(yes)
|
||||||
ifelse([$2], , :, [$2])
|
ifelse([$2], , :, [$2])
|
||||||
|
_AM_PATH_GPGME_CONFIG_HOST_CHECK
|
||||||
else
|
else
|
||||||
- GPGME_GLIB_CFLAGS=""
|
- GPGME_GLIB_CFLAGS=""
|
||||||
- GPGME_GLIB_LIBS=""
|
- GPGME_GLIB_LIBS=""
|
||||||
@@ -275,4 +255,25 @@ Index: gpgme-1.4.3/src/gpgme.m4
|
|||||||
- AC_SUBST(GPGME_GLIB_CFLAGS)
|
- AC_SUBST(GPGME_GLIB_CFLAGS)
|
||||||
- AC_SUBST(GPGME_GLIB_LIBS)
|
- AC_SUBST(GPGME_GLIB_LIBS)
|
||||||
])
|
])
|
||||||
|
diff --git a/src/gpgme.pc.in b/src/gpgme.pc.in
|
||||||
|
new file mode 100644
|
||||||
|
index 0000000..b69539f
|
||||||
|
--- /dev/null
|
||||||
|
+++ b/src/gpgme.pc.in
|
||||||
|
@@ -0,0 +1,15 @@
|
||||||
|
+prefix=@prefix@
|
||||||
|
+exec_prefix=@exec_prefix@
|
||||||
|
+libdir=@libdir@
|
||||||
|
+includedir=@includedir@
|
||||||
|
+
|
||||||
|
+# API info
|
||||||
|
+api_version=@GPGME_CONFIG_API_VERSION@
|
||||||
|
+host=@GPGME_CONFIG_HOST@
|
||||||
|
+
|
||||||
|
+Name: gpgme
|
||||||
|
+Description: GnuPG Made Easy (GPGME) is a C language library that allows to addsupport for cryptography to a program.
|
||||||
|
+Version: @VERSION@
|
||||||
|
+Libs: -L${libdir} -lgpgme
|
||||||
|
+Cflags: -I${includedir}
|
||||||
|
+Requires: libassuan gpg-error
|
||||||
|
\ No newline at end of file
|
||||||
+4
-6
@@ -6,22 +6,20 @@ BUGTRACKER = "https://bugs.g10code.com/gnupg/index"
|
|||||||
LICENSE = "GPLv2+ & LGPLv2.1+"
|
LICENSE = "GPLv2+ & LGPLv2.1+"
|
||||||
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
|
LIC_FILES_CHKSUM = "file://COPYING;md5=94d55d512a9ba36caa9b7df079bae19f \
|
||||||
file://COPYING.LESSER;md5=bbb461211a33b134d42ed5ee802b37ff \
|
file://COPYING.LESSER;md5=bbb461211a33b134d42ed5ee802b37ff \
|
||||||
file://src/gpgme.h.in;endline=23;md5=dccb4bb624011e36513c61ef0422d054 \
|
file://src/gpgme.h.in;endline=23;md5=71ba2ae8d6ca034ed10bd099a8cf473c \
|
||||||
file://src/engine.h;endline=22;md5=4b6d8ba313d9b564cc4d4cfb1640af9d"
|
file://src/engine.h;endline=22;md5=4b6d8ba313d9b564cc4d4cfb1640af9d"
|
||||||
|
|
||||||
SRC_URI = "ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-${PV}.tar.bz2 \
|
SRC_URI = "ftp://ftp.gnupg.org/gcrypt/gpgme/${BP}.tar.bz2 \
|
||||||
file://gpgme.pc \
|
file://gpgme.pc \
|
||||||
file://pkgconfig.patch \
|
file://pkgconfig.patch \
|
||||||
file://gpgme-fix-CVE-2014-3564.patch \
|
|
||||||
"
|
"
|
||||||
|
|
||||||
SRC_URI[md5sum] = "334e524cffa8af4e2f43ae8afe585672"
|
SRC_URI[md5sum] = "feafa03ea064e1d1dc11bc2b88404623"
|
||||||
SRC_URI[sha256sum] = "2d1cc12411753752d9c5b9037e6fd3fd363517af720154768cc7b46b60120496"
|
SRC_URI[sha256sum] = "bb38c0ec8815c9e94e6047b484984808a8dad9d6bec8df33dc5339fd55ffea6c"
|
||||||
|
|
||||||
DEPENDS = "libgpg-error libassuan"
|
DEPENDS = "libgpg-error libassuan"
|
||||||
|
|
||||||
BINCONFIG = "${bindir}/gpgme-config"
|
BINCONFIG = "${bindir}/gpgme-config"
|
||||||
EXTRA_OECONF = "--with-gpg=${bindir}/gpg --without-gpgsm --with-gpgconf=no --with-g13=no"
|
|
||||||
|
|
||||||
inherit autotools texinfo binconfig-disabled pkgconfig
|
inherit autotools texinfo binconfig-disabled pkgconfig
|
||||||
|
|
||||||
Reference in New Issue
Block a user