All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/1] Fix gettext dependency issue
@ 2011-09-03 17:04 Saul Wold
  2011-09-03 17:04 ` [PATCH 1/1] gettext: use included libxml and libcroco Saul Wold
  2011-09-08  3:42 ` [PATCH 0/1] Fix gettext dependency issue Saul Wold
  0 siblings, 2 replies; 4+ messages in thread
From: Saul Wold @ 2011-09-03 17:04 UTC (permalink / raw)
  To: openembedded-core

Use gettext's internal libraries for libxml and libcroco to
ensure that there is not any strange behavior if ordering of
the build of these items changes.

The gettext-tools configure script looks for a libxml and libcroco
in sysroot and this can cause an unforseen dependency issue.

Sau!

The following changes since commit 0616557a8c29b42bae0ffd5fd665a046810047e4:

  populate_sdk: We need to ensure that the SDK sysroot reflects PACKAGE_ARCH (2011-09-02 23:38:00 +0100)

are available in the git repository at:
  git://git.openembedded.org/openembedded-core-contrib sgw/fix
  http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/fix

Saul Wold (1):
  gettext: use included libxml and libcroco

 meta/recipes-core/gettext/gettext_0.18.1.1.bb |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

-- 
1.7.6




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

* [PATCH 1/1] gettext: use included libxml and libcroco
  2011-09-03 17:04 [PATCH 0/1] Fix gettext dependency issue Saul Wold
@ 2011-09-03 17:04 ` Saul Wold
  2011-09-03 18:27   ` Koen Kooi
  2011-09-08  3:42 ` [PATCH 0/1] Fix gettext dependency issue Saul Wold
  1 sibling, 1 reply; 4+ messages in thread
From: Saul Wold @ 2011-09-03 17:04 UTC (permalink / raw)
  To: openembedded-core

[YOCTO #1400]

By using the included libxml and libcroco, we do not create additional
on this core library. There was an ordering issue that when one library
was not built, but gettext detected the other library a compliation would
fail, this will force it to always use the included libraries.

Signed-off-by: Saul Wold <sgw@linux.intel.com>
---
 meta/recipes-core/gettext/gettext_0.18.1.1.bb |    2 ++
 1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/meta/recipes-core/gettext/gettext_0.18.1.1.bb b/meta/recipes-core/gettext/gettext_0.18.1.1.bb
index 9ec851e..0bcd90b 100644
--- a/meta/recipes-core/gettext/gettext_0.18.1.1.bb
+++ b/meta/recipes-core/gettext/gettext_0.18.1.1.bb
@@ -36,6 +36,8 @@ EXTRA_OECONF += "--without-lispdir \
                  --without-emacs \
                  --without-cvs \
                  --without-git \
+                 --with-included-libxml \
+                 --with-included-libcroco \
                 "
 
 acpaths = '-I ${S}/gettext-runtime/m4 \
-- 
1.7.6




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

* Re: [PATCH 1/1] gettext: use included libxml and libcroco
  2011-09-03 17:04 ` [PATCH 1/1] gettext: use included libxml and libcroco Saul Wold
@ 2011-09-03 18:27   ` Koen Kooi
  0 siblings, 0 replies; 4+ messages in thread
From: Koen Kooi @ 2011-09-03 18:27 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer


Op 3 sep. 2011, om 19:04 heeft Saul Wold het volgende geschreven:

> [YOCTO #1400]
> 
> By using the included libxml and libcroco, we do not create additional
> on this core library. There was an ordering issue that when one library
> was not built, but gettext detected the other library a compliation would
> fail, this will force it to always use the included libraries.
> 
> Signed-off-by: Saul Wold <sgw@linux.intel.com>
> ---
> meta/recipes-core/gettext/gettext_0.18.1.1.bb |    2 ++
> 1 files changed, 2 insertions(+), 0 deletions(-)
> 
> diff --git a/meta/recipes-core/gettext/gettext_0.18.1.1.bb b/meta/recipes-core/gettext/gettext_0.18.1.1.bb
> index 9ec851e..0bcd90b 100644
> --- a/meta/recipes-core/gettext/gettext_0.18.1.1.bb
> +++ b/meta/recipes-core/gettext/gettext_0.18.1.1.bb
> @@ -36,6 +36,8 @@ EXTRA_OECONF += "--without-lispdir \
>                  --without-emacs \
>                  --without-cvs \
>                  --without-git \
> +                 --with-included-libxml \
> +                 --with-included-libcroco \
>                 "

That's missing a PR bump


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

* Re: [PATCH 0/1] Fix gettext dependency issue
  2011-09-03 17:04 [PATCH 0/1] Fix gettext dependency issue Saul Wold
  2011-09-03 17:04 ` [PATCH 1/1] gettext: use included libxml and libcroco Saul Wold
@ 2011-09-08  3:42 ` Saul Wold
  1 sibling, 0 replies; 4+ messages in thread
From: Saul Wold @ 2011-09-08  3:42 UTC (permalink / raw)
  To: Patches and discussions about the oe-core layer

On 09/03/2011 10:04 AM, Saul Wold wrote:
> Use gettext's internal libraries for libxml and libcroco to
> ensure that there is not any strange behavior if ordering of
> the build of these items changes.
>
> The gettext-tools configure script looks for a libxml and libcroco
> in sysroot and this can cause an unforseen dependency issue.
>
> Sau!
>
> The following changes since commit 0616557a8c29b42bae0ffd5fd665a046810047e4:
>
>    populate_sdk: We need to ensure that the SDK sysroot reflects PACKAGE_ARCH (2011-09-02 23:38:00 +0100)
>
> are available in the git repository at:
>    git://git.openembedded.org/openembedded-core-contrib sgw/fix
>    http://cgit.openembedded.org/cgit.cgi/openembedded-core-contrib/log/?h=sgw/fix
>
> Saul Wold (1):
>    gettext: use included libxml and libcroco
>
>   meta/recipes-core/gettext/gettext_0.18.1.1.bb |    2 ++
>   1 files changed, 2 insertions(+), 0 deletions(-)
>
Merged into OE-Core

Thanks
	Myse!f



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

end of thread, other threads:[~2011-09-08  3:47 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-09-03 17:04 [PATCH 0/1] Fix gettext dependency issue Saul Wold
2011-09-03 17:04 ` [PATCH 1/1] gettext: use included libxml and libcroco Saul Wold
2011-09-03 18:27   ` Koen Kooi
2011-09-08  3:42 ` [PATCH 0/1] Fix gettext dependency issue Saul Wold

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.