]> code.ossystems Code Review - openembedded-core.git/commitdiff
msmtp: disable libidn support
authorKang Kai <kai.kang@windriver.com>
Mon, 3 Sep 2012 07:33:39 +0000 (15:33 +0800)
committerSaul Wold <sgw@linux.intel.com>
Tue, 4 Sep 2012 05:52:56 +0000 (22:52 -0700)
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.

Signed-off-by: Kang Kai <kai.kang@windriver.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
meta/recipes-extended/msmtp/msmtp_1.4.24.bb

index 08566ca4ce98c3474e1842e2fa3bcbde328834e6..13de1674529c4172ed27791c2e969e500adbb692 100644 (file)
@@ -5,7 +5,7 @@ SECTION = "console/network"
 
 LICENSE = "GPLv3"
 DEPENDS = "zlib gnutls"
-PR = "r3"
+PR = "r4"
 
 
 #COPYING or Licence
@@ -19,7 +19,7 @@ SRC_URI[sha256sum] = "f19f3fcc67da448420b3adbd5add09f8fe110664dd64f3c2cd693ef0cb
 
 inherit gettext autotools update-alternatives
 
-EXTRA_OECONF += "--without-gnome-keyring"
+EXTRA_OECONF += "--without-gnome-keyring --without-libidn"
 
 ALTERNATIVE_${PN} = "sendmail"
 ALTERNATIVE_TARGET[sendmail] = "${bindir}/msmtp"