All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/2] Fix bug 794 and 796
@ 2011-04-15  9:31 Jingdong Lu
  2011-04-15  9:31 ` [PATCH 1/2] gcc: Add "--enable-clocale=gnu" option for LSB Jingdong Lu
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Jingdong Lu @ 2011-04-15  9:31 UTC (permalink / raw)
  To: poky

From: Jingdong Lu <jingdong.lu@windriver.com>

Fix bug 794: Add "largefile" feature for LSB distro and make perl test passed.
Fix bug 796: Add "--enable-clocale=gun" option for gcc configuration explicitly for LSB distro. 


Pull URL: git://git.pokylinux.org/poky-contrib.git
  Branch: jingdonglu/distro
  Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jingdonglu/distro

Thanks,
    Jingdong Lu <jingdong.lu@windriver.com>
---


Jingdong Lu (2):
  gcc: Add "--enable-clocale=gnu" option for LSB.
  poky-lsb: Add "largefile" feature for LSB distro.

 meta-yocto/conf/distro/poky-lsb.conf           |    2 +-
 meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb |    3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)



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

* [PATCH 1/2] gcc: Add "--enable-clocale=gnu" option for LSB.
  2011-04-15  9:31 [PATCH 0/2] Fix bug 794 and 796 Jingdong Lu
@ 2011-04-15  9:31 ` Jingdong Lu
  2011-04-15  9:31 ` [PATCH 2/2] poky-lsb: Add "largefile" feature for LSB distro Jingdong Lu
  2011-04-18 21:56 ` [PATCH 0/2] Fix bug 794 and 796 Saul Wold
  2 siblings, 0 replies; 4+ messages in thread
From: Jingdong Lu @ 2011-04-15  9:31 UTC (permalink / raw)
  To: poky

From: Jingdong Lu <jingdong.lu@windriver.com>

Add "--enable-clocale=gun" option for gcc configuration explicitly for LSB distro
in order to make sure C++ library can use correct locale module.
Fixes [YOCTO #796]

Signed-off-by: Jingdong Lu <jingdong.lu@windriver.com>
---
 meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb b/meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb
index c1e680d..49dfcbe 100644
--- a/meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb
+++ b/meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb
@@ -1,4 +1,4 @@
-PR = "r3"
+PR = "r4"
 
 require gcc-${PV}.inc
 require gcc-configure-runtime.inc
@@ -9,3 +9,4 @@ SRC_URI_append = "file://fortran-cross-compile-hack.patch"
 ARCH_FLAGS_FOR_TARGET += "-isystem${STAGING_INCDIR}"
 
 EXTRA_OECONF += "--disable-libunwind-exceptions"
+EXTRA_OECONF_append_poky-lsb = " --enable-clocale=gnu"
-- 
1.7.0.4



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

* [PATCH 2/2] poky-lsb: Add "largefile" feature for LSB distro.
  2011-04-15  9:31 [PATCH 0/2] Fix bug 794 and 796 Jingdong Lu
  2011-04-15  9:31 ` [PATCH 1/2] gcc: Add "--enable-clocale=gnu" option for LSB Jingdong Lu
@ 2011-04-15  9:31 ` Jingdong Lu
  2011-04-18 21:56 ` [PATCH 0/2] Fix bug 794 and 796 Saul Wold
  2 siblings, 0 replies; 4+ messages in thread
From: Jingdong Lu @ 2011-04-15  9:31 UTC (permalink / raw)
  To: poky

From: Jingdong Lu <jingdong.lu@windriver.com>

Add "largefile" feature for LSB distro.
Fixes [YOCTO #794]

Signed-off-by: Jingdong Lu <jingdong.lu@windriver.com>
---
 meta-yocto/conf/distro/poky-lsb.conf |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta-yocto/conf/distro/poky-lsb.conf b/meta-yocto/conf/distro/poky-lsb.conf
index 749c858..64603da 100644
--- a/meta-yocto/conf/distro/poky-lsb.conf
+++ b/meta-yocto/conf/distro/poky-lsb.conf
@@ -3,7 +3,7 @@ require conf/distro/poky.conf
 DISTRO = "poky-lsb"
 DISTROOVERRIDES = "poky:poky-lsb"
 
-DISTRO_FEATURES += "pam"
+DISTRO_FEATURES += "pam largefile"
 PREFERRED_PROVIDER_virtual/libx11 = "libx11"
 
 
-- 
1.7.0.4



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

* Re: [PATCH 0/2] Fix bug 794 and 796
  2011-04-15  9:31 [PATCH 0/2] Fix bug 794 and 796 Jingdong Lu
  2011-04-15  9:31 ` [PATCH 1/2] gcc: Add "--enable-clocale=gnu" option for LSB Jingdong Lu
  2011-04-15  9:31 ` [PATCH 2/2] poky-lsb: Add "largefile" feature for LSB distro Jingdong Lu
@ 2011-04-18 21:56 ` Saul Wold
  2 siblings, 0 replies; 4+ messages in thread
From: Saul Wold @ 2011-04-18 21:56 UTC (permalink / raw)
  To: Jingdong Lu; +Cc: poky

On 04/15/2011 02:31 AM, Jingdong Lu wrote:
> From: Jingdong Lu<jingdong.lu@windriver.com>
>
> Fix bug 794: Add "largefile" feature for LSB distro and make perl test passed.
> Fix bug 796: Add "--enable-clocale=gun" option for gcc configuration explicitly for LSB distro.
>
>
> Pull URL: git://git.pokylinux.org/poky-contrib.git
>    Branch: jingdonglu/distro
>    Browse: http://git.pokylinux.org/cgit.cgi/poky-contrib/log/?h=jingdonglu/distro
>
> Thanks,
>      Jingdong Lu<jingdong.lu@windriver.com>
> ---
>
>
> Jingdong Lu (2):
>    gcc: Add "--enable-clocale=gnu" option for LSB.
>    poky-lsb: Add "largefile" feature for LSB distro.
>
>   meta-yocto/conf/distro/poky-lsb.conf           |    2 +-
>   meta/recipes-devtools/gcc/gcc-runtime_4.5.1.bb |    3 ++-
>   2 files changed, 3 insertions(+), 2 deletions(-)
>
> _______________________________________________
> poky mailing list
> poky@yoctoproject.org
> https://lists.yoctoproject.org/listinfo/poky
>

Merged into Master

Thanks
	Sau!


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

end of thread, other threads:[~2011-04-18 21:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-04-15  9:31 [PATCH 0/2] Fix bug 794 and 796 Jingdong Lu
2011-04-15  9:31 ` [PATCH 1/2] gcc: Add "--enable-clocale=gnu" option for LSB Jingdong Lu
2011-04-15  9:31 ` [PATCH 2/2] poky-lsb: Add "largefile" feature for LSB distro Jingdong Lu
2011-04-18 21:56 ` [PATCH 0/2] Fix bug 794 and 796 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.