diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-16 23:49:52 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2016-02-16 23:50:48 +0000 |
commit | 683ea31ac752ab377a8622970dd82e284ff0fb81 (patch) | |
tree | a7e1c36c9fabf4af6bbfe6d5629191ce05e95af1 /meta/recipes-support | |
parent | 7a700f59d98ffe08714582532d3edb97abc2e33e (diff) | |
download | poky-683ea31ac752ab377a8622970dd82e284ff0fb81.tar.gz |
rng-tools: Fix underquoted m4 and libgcrypt floating dependency
The underquoted m4 caused build failures if libgcrypt wasn't present. The floating
dependency on libgcrypt was just plain incorrect, particularly given the incorrect
libgcrypt RDEPENDS. Change to use PACKAGECONFIG an default to on.
(From OE-Core rev: 17b3044d7508a921916da4979ff8bfbab1e206ce)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support')
-rw-r--r-- | meta/recipes-support/rng-tools/rng-tools/underquote.patch | 31 | ||||
-rw-r--r-- | meta/recipes-support/rng-tools/rng-tools_5.bb | 6 |
2 files changed, 34 insertions, 3 deletions
diff --git a/meta/recipes-support/rng-tools/rng-tools/underquote.patch b/meta/recipes-support/rng-tools/rng-tools/underquote.patch new file mode 100644 index 0000000000..1422571818 --- /dev/null +++ b/meta/recipes-support/rng-tools/rng-tools/underquote.patch | |||
@@ -0,0 +1,31 @@ | |||
1 | Fix underquoted m4 entry. This causes a failure if gcrypt isn't present: | ||
2 | |||
3 | | configure: libgcrypt support disabled | ||
4 | | ../rng-tools-5/configure: line 4345: ac_fn_c_try_link: command not found | ||
5 | | configure: error: in `/media/build1/poky/build/tmp/work/i586-poky-linux/rng-tools/5-r0/build': | ||
6 | |||
7 | RP | ||
8 | 2016/2/16 | ||
9 | |||
10 | Index: rng-tools-5/configure.ac | ||
11 | =================================================================== | ||
12 | --- rng-tools-5.orig/configure.ac | ||
13 | +++ rng-tools-5/configure.ac | ||
14 | @@ -71,7 +71,7 @@ AS_IF( | ||
15 | [test "x$with_libgcrypt" != "xno"], | ||
16 | [ | ||
17 | AC_CHECK_HEADER([gcrypt.h], | ||
18 | - AC_CHECK_LIB( | ||
19 | + [AC_CHECK_LIB( | ||
20 | [gcrypt], | ||
21 | [gcry_check_version], , | ||
22 | [ | ||
23 | @@ -80,7 +80,7 @@ AS_IF( | ||
24 | AC_MSG_NOTICE([libgcrypt support disabled]) | ||
25 | fi | ||
26 | ] | ||
27 | - ), | ||
28 | + )], | ||
29 | [if test "x$with_libgcrypt" != "xcheck"; then | ||
30 | AC_MSG_FAILURE([libgcrypt headers not found]); else | ||
31 | AC_MSG_NOTICE([libgcrypt support disabled]) | ||
diff --git a/meta/recipes-support/rng-tools/rng-tools_5.bb b/meta/recipes-support/rng-tools/rng-tools_5.bb index 9a19d1cb42..bc679904eb 100644 --- a/meta/recipes-support/rng-tools/rng-tools_5.bb +++ b/meta/recipes-support/rng-tools/rng-tools_5.bb | |||
@@ -5,6 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=0b6f033afe6db235e559456585dc8cdc" | |||
5 | SRC_URI = "http://heanet.dl.sourceforge.net/sourceforge/gkernel/${BP}.tar.gz \ | 5 | SRC_URI = "http://heanet.dl.sourceforge.net/sourceforge/gkernel/${BP}.tar.gz \ |
6 | file://0001-If-the-libc-is-lacking-argp-use-libargp.patch \ | 6 | file://0001-If-the-libc-is-lacking-argp-use-libargp.patch \ |
7 | file://0002-Add-argument-to-control-the-libargp-dependency.patch \ | 7 | file://0002-Add-argument-to-control-the-libargp-dependency.patch \ |
8 | file://underquote.patch \ | ||
8 | file://init \ | 9 | file://init \ |
9 | file://default" | 10 | file://default" |
10 | 11 | ||
@@ -20,12 +21,11 @@ python () { | |||
20 | 21 | ||
21 | inherit autotools update-rc.d | 22 | inherit autotools update-rc.d |
22 | 23 | ||
23 | PACKAGECONFIG = "" | 24 | PACKAGECONFIG = "libgcrypt" |
24 | PACKAGECONFIG_libc-musl = "libargp" | 25 | PACKAGECONFIG_libc-musl = "libargp" |
25 | PACKAGECONFIG_libc-uclibc = "libargp" | 26 | PACKAGECONFIG_libc-uclibc = "libargp" |
26 | PACKAGECONFIG[libargp] = "--with-libargp,--without-libargp,argp-standalone," | 27 | PACKAGECONFIG[libargp] = "--with-libargp,--without-libargp,argp-standalone," |
27 | 28 | PACKAGECONFIG[libgcrypt] = "--with-libgcrypt,--without-libgcrypt,libgcrypt," | |
28 | RDEPENDS_${PN} = "libgcrypt" | ||
29 | 29 | ||
30 | do_install_append() { | 30 | do_install_append() { |
31 | # Only install the init script when 'sysvinit' is in DISTRO_FEATURES. | 31 | # Only install the init script when 'sysvinit' is in DISTRO_FEATURES. |