summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKang Kai <kai.kang@windriver.com>2012-09-03 15:33:39 +0800
committerRichard Purdie <richard.purdie@linuxfoundation.org>2012-09-04 12:53:11 +0100
commit25e35d64d72055573136228cc89d7731d64d100f (patch)
tree6f67ad8848c89f9f56d41eb05b5bf336a68f5657
parent80c1bbfba1be61ebd5f6e55c7ed400791191fc3f (diff)
downloadpoky-25e35d64d72055573136228cc89d7731d64d100f.tar.gz
msmtp: disable libidn support
When libidn has been populated to sysroot but rpm packages are not created, build msmtp will check libidn support automatically and then depends on libidn. But package libidn doesn't exist, build image which includes msmtp will fail with: | error: Failed dependencies: | libidn11 >= 1.25 is needed by msmtp-1.4.24-r3.i586 | libidn.so.11(LIBIDN_1.0) is needed by msmtp-1.4.24-r3.i586 | libidn.so.11 is needed by msmtp-1.4.24-r3.i586 Disable libidn support to fix this issue. (From OE-Core rev: a304789cecb1a6ffa3c5a56f617eea4a5ac29a98) Signed-off-by: Kang Kai <kai.kang@windriver.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/recipes-extended/msmtp/msmtp_1.4.24.bb4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-extended/msmtp/msmtp_1.4.24.bb b/meta/recipes-extended/msmtp/msmtp_1.4.24.bb
index 08566ca4ce..13de167452 100644
--- a/meta/recipes-extended/msmtp/msmtp_1.4.24.bb
+++ b/meta/recipes-extended/msmtp/msmtp_1.4.24.bb
@@ -5,7 +5,7 @@ SECTION = "console/network"
5 5
6LICENSE = "GPLv3" 6LICENSE = "GPLv3"
7DEPENDS = "zlib gnutls" 7DEPENDS = "zlib gnutls"
8PR = "r3" 8PR = "r4"
9 9
10 10
11#COPYING or Licence 11#COPYING or Licence
@@ -19,7 +19,7 @@ SRC_URI[sha256sum] = "f19f3fcc67da448420b3adbd5add09f8fe110664dd64f3c2cd693ef0cb
19 19
20inherit gettext autotools update-alternatives 20inherit gettext autotools update-alternatives
21 21
22EXTRA_OECONF += "--without-gnome-keyring" 22EXTRA_OECONF += "--without-gnome-keyring --without-libidn"
23 23
24ALTERNATIVE_${PN} = "sendmail" 24ALTERNATIVE_${PN} = "sendmail"
25ALTERNATIVE_TARGET[sendmail] = "${bindir}/msmtp" 25ALTERNATIVE_TARGET[sendmail] = "${bindir}/msmtp"