Openembedded Core Discussions
 help / color / mirror / Atom feed
* [PATCH 0/1] gnutls: fix configure failure
@ 2011-10-08  8:30 edwin.zhai
  2011-10-08  8:30 ` [PATCH 1/1] gnutls: Fix " edwin.zhai
  2011-10-08 10:28 ` [PATCH 0/1] gnutls: fix " Koen Kooi
  0 siblings, 2 replies; 3+ messages in thread
From: edwin.zhai @ 2011-10-08  8:30 UTC (permalink / raw)
  To: openembedded-core

From: Zhai Edwin <edwin.zhai@intel.com>

All,
This patch fix configure failure of guntls after last upgrade.
Pls. help to review.

Thanks,
Edwin

The following changes since commit 0d8c8cf462e5df446669355b554b3d5fdc532a11:

  mutter: update to 2.29.1 and fix SRC_URI (2011-10-07 11:35:50 +0100)

are available in the git repository at:
  git://git.pokylinux.org/poky-contrib gzhai/master2
  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=gzhai/master2

Zhai Edwin (1):
  gnutls: Fix configure failure

 meta/recipes-support/gnutls/gnutls.inc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)




^ permalink raw reply	[flat|nested] 3+ messages in thread

* [PATCH 1/1] gnutls: Fix configure failure
  2011-10-08  8:30 [PATCH 0/1] gnutls: fix configure failure edwin.zhai
@ 2011-10-08  8:30 ` edwin.zhai
  2011-10-08 10:28 ` [PATCH 0/1] gnutls: fix " Koen Kooi
  1 sibling, 0 replies; 3+ messages in thread
From: edwin.zhai @ 2011-10-08  8:30 UTC (permalink / raw)
  To: openembedded-core

From: Zhai Edwin <edwin.zhai@intel.com>

gnutls fails in configure as depends on p11-kit after last upgrade. Removing
this dependency via configure option can fix following error:


| checking for fork... (cached) yes
| checking for P11_KIT... configure: error: Package requirements (p11-kit-1 >= 0.2) were not met:
|
| No package 'p11-kit-1' found
|
| Consider adjusting the PKG_CONFIG_PATH environment variable if you
| installed software in a non-standard prefix.
|
| Alternatively, you may set the environment variables P11_KIT_CFLAGS
| and P11_KIT_LIBS to avoid the need to call pkg-config.
| See the pkg-config man page for more details.
|
| ERROR: oe_runconf failed


Signed-off-by: Zhai Edwin <edwin.zhai@intel.com>
---
 meta/recipes-support/gnutls/gnutls.inc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/meta/recipes-support/gnutls/gnutls.inc b/meta/recipes-support/gnutls/gnutls.inc
index 9257880..8818c32 100644
--- a/meta/recipes-support/gnutls/gnutls.inc
+++ b/meta/recipes-support/gnutls/gnutls.inc
@@ -3,7 +3,7 @@ HOMEPAGE = "http://www.gnu.org/software/gnutls/"
 BUGTRACKER = "https://savannah.gnu.org/support/?group=gnutls"
 DEPENDS = "zlib lzo libtasn1 libgcrypt (>= 1.4.2) libcap"
 
-INC_PR = "r2"
+INC_PR = "r3"
 
 LICENSE = "GPLv3+ & LGPLv2.1+"
 LICENSE_${PN} = "LGPLv2.1+"
@@ -24,7 +24,7 @@ EXTRA_OECONF="--with-included-opencdk --with-included-libcfg --disable-rpath \
               --with-libgcrypt --with-libgcrypt-prefix=${STAGING_DIR_HOST}${prefix} \
               --with-libdl-prefix=${STAGING_DIR_HOST}${prefix} \
               --with-libpthread-prefix=${STAGING_DIR_HOST}${prefix} \
-              --with-lzo --disable-guile \
+              --with-lzo --disable-guile --without-p11-kit \
               "
 do_configure_prepend() {
 	for dir in . lib libextra; do
-- 
1.7.1




^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH 0/1] gnutls: fix configure failure
  2011-10-08  8:30 [PATCH 0/1] gnutls: fix configure failure edwin.zhai
  2011-10-08  8:30 ` [PATCH 1/1] gnutls: Fix " edwin.zhai
@ 2011-10-08 10:28 ` Koen Kooi
  1 sibling, 0 replies; 3+ messages in thread
From: Koen Kooi @ 2011-10-08 10:28 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

http://cgit.openembedded.org/cgit.cgi/openembedded-core/commit/?id=808b3123e359f1aebabb8af44694275e4075e031


Op 8 okt. 2011, om 10:30 heeft edwin.zhai@intel.com het volgende geschreven:

> From: Zhai Edwin <edwin.zhai@intel.com>
> 
> All,
> This patch fix configure failure of guntls after last upgrade.
> Pls. help to review.
> 
> Thanks,
> Edwin
> 
> The following changes since commit 0d8c8cf462e5df446669355b554b3d5fdc532a11:
> 
>  mutter: update to 2.29.1 and fix SRC_URI (2011-10-07 11:35:50 +0100)
> 
> are available in the git repository at:
>  git://git.pokylinux.org/poky-contrib gzhai/master2
>  http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=gzhai/master2
> 
> Zhai Edwin (1):
>  gnutls: Fix configure failure
> 
> meta/recipes-support/gnutls/gnutls.inc |    4 ++--
> 1 files changed, 2 insertions(+), 2 deletions(-)
> 
> 
> _______________________________________________
> Openembedded-core mailing list
> Openembedded-core@lists.openembedded.org
> http://lists.linuxtogo.org/cgi-bin/mailman/listinfo/openembedded-core




^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-10-08 10:33 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-08  8:30 [PATCH 0/1] gnutls: fix configure failure edwin.zhai
2011-10-08  8:30 ` [PATCH 1/1] gnutls: Fix " edwin.zhai
2011-10-08 10:28 ` [PATCH 0/1] gnutls: fix " Koen Kooi

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox