All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Fix some failures of LSB test.
@ 2010-12-23  7:35 Jingdong Lu
  2010-12-23  7:35 ` [PATCH 1/3] perl: Add GDBM_File into perl extension Jingdong Lu
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Jingdong Lu @ 2010-12-23  7:35 UTC (permalink / raw)
  To: poky

Saul/RP,
I added SUMMARY and modified PREFIX option for mailx.

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 (3):
  perl: Add GDBM_File into perl extension
  gcc: Add "--enable-clocale=gnu" option explicitly
  mailx: Add mailx

 meta/recipes-devtools/gcc/gcc-configure-common.inc |    2 +-
 meta/recipes-devtools/perl/perl-5.8.8/config.sh    |    2 +-
 meta/recipes-extended/mailx/mailx_12.4.bb          |   22 ++++++++++++++++++++
 3 files changed, 24 insertions(+), 2 deletions(-)
 create mode 100644 meta/recipes-extended/mailx/mailx_12.4.bb



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

* [PATCH 1/3] perl: Add GDBM_File into perl extension
  2010-12-23  7:35 [PATCH 0/3] Fix some failures of LSB test Jingdong Lu
@ 2010-12-23  7:35 ` Jingdong Lu
  2010-12-23  7:35 ` [PATCH 2/3] gcc: Add "--enable-clocale=gnu" option explicitly Jingdong Lu
  2010-12-23  7:35 ` [PATCH 3/3] mailx: Add mailx Jingdong Lu
  2 siblings, 0 replies; 6+ messages in thread
From: Jingdong Lu @ 2010-12-23  7:35 UTC (permalink / raw)
  To: poky

Add GDBM_File into perl extension in config.sh in order to fix failure of lsb-perl-test.

Signed-off-by: Jingdong Lu <jingdong.lu@windriver.com>
---
 meta/recipes-devtools/perl/perl-5.8.8/config.sh |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/meta/recipes-devtools/perl/perl-5.8.8/config.sh b/meta/recipes-devtools/perl/perl-5.8.8/config.sh
index 3d4c193..49d5ab7 100644
--- a/meta/recipes-devtools/perl/perl-5.8.8/config.sh
+++ b/meta/recipes-devtools/perl/perl-5.8.8/config.sh
@@ -522,7 +522,7 @@ endservent_r_proto='0'
 eunicefix=':'
 exe_ext=''
 expr='expr'
-extensions='attrs B ByteLoader Cwd Data/Dumper Devel/DProf Devel/Peek Devel/PPPort Digest/MD5 Encode Fcntl File/Glob Filter/Util/Call I18N/Langinfo IO IPC/SysV List/Util MIME/Base64 Opcode PerlIO/encoding PerlIO/scalar PerlIO/via POSIX re SDBM_File Socket Storable Sys/Hostname Sys/Syslog threads Time/HiRes Unicode/Normalize XS/APItest XS/Typemap threads/shared Errno'
+extensions='attrs B ByteLoader Cwd Data/Dumper Devel/DProf Devel/Peek Devel/PPPort Digest/MD5 Encode Fcntl File/Glob Filter/Util/Call I18N/Langinfo IO IPC/SysV List/Util MIME/Base64 Opcode PerlIO/encoding PerlIO/scalar PerlIO/via POSIX re GDBM_File SDBM_File Socket Storable Sys/Hostname Sys/Syslog threads Time/HiRes Unicode/Normalize XS/APItest XS/Typemap threads/shared Errno'
 extras=''
 fflushNULL='define'
 fflushall='undef'
-- 
1.7.0.4



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

* [PATCH 2/3] gcc: Add "--enable-clocale=gnu" option explicitly
  2010-12-23  7:35 [PATCH 0/3] Fix some failures of LSB test Jingdong Lu
  2010-12-23  7:35 ` [PATCH 1/3] perl: Add GDBM_File into perl extension Jingdong Lu
@ 2010-12-23  7:35 ` Jingdong Lu
  2010-12-23  7:35 ` [PATCH 3/3] mailx: Add mailx Jingdong Lu
  2 siblings, 0 replies; 6+ messages in thread
From: Jingdong Lu @ 2010-12-23  7:35 UTC (permalink / raw)
  To: poky

Add "--enable-clocale=gun" option for gcc configuration explicitly in order to make sure C++ library can use correct locale module.

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

diff --git a/meta/recipes-devtools/gcc/gcc-configure-common.inc b/meta/recipes-devtools/gcc/gcc-configure-common.inc
index 4393777..b212fdc 100644
--- a/meta/recipes-devtools/gcc/gcc-configure-common.inc
+++ b/meta/recipes-devtools/gcc/gcc-configure-common.inc
@@ -27,7 +27,7 @@ EXTRA_OECONF_INTERMEDIATE ?= ""
 
 GCCMULTILIB = "--disable-multilib"
 
-EXTRA_OECONF = "${@['--enable-clocale=generic', ''][bb.data.getVar('USE_NLS', d, 1) != 'no']} \
+EXTRA_OECONF = "${@['--enable-clocale=generic', ' --enable-clocale=gnu'][bb.data.getVar('USE_NLS', d, 1) != 'no']} \
                 --with-gnu-ld \
                 --enable-shared \
                 --enable-languages=${LANGUAGES} \
-- 
1.7.0.4



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

* [PATCH 3/3] mailx: Add mailx
  2010-12-23  7:35 [PATCH 0/3] Fix some failures of LSB test Jingdong Lu
  2010-12-23  7:35 ` [PATCH 1/3] perl: Add GDBM_File into perl extension Jingdong Lu
  2010-12-23  7:35 ` [PATCH 2/3] gcc: Add "--enable-clocale=gnu" option explicitly Jingdong Lu
@ 2010-12-23  7:35 ` Jingdong Lu
  2 siblings, 0 replies; 6+ messages in thread
From: Jingdong Lu @ 2010-12-23  7:35 UTC (permalink / raw)
  To: poky

Signed-off-by: Jingdong Lu <jingdong.lu@windriver.com>
---
 meta/recipes-extended/mailx/mailx_12.4.bb |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)
 create mode 100644 meta/recipes-extended/mailx/mailx_12.4.bb

diff --git a/meta/recipes-extended/mailx/mailx_12.4.bb b/meta/recipes-extended/mailx/mailx_12.4.bb
new file mode 100644
index 0000000..c3fdfe0
--- /dev/null
+++ b/meta/recipes-extended/mailx/mailx_12.4.bb
@@ -0,0 +1,22 @@
+SUMMARY = "Mailx is a mail user agent for Unix systems."
+DESCRIPTION = "Mailx is an enhanced mail command, which provides the functionality \
+of the POSIX mailx command, as well as SysV mail and Berkeley Mail \
+(from which it is derived)."
+HOMEPAGE = "http://heirloom.sourceforge.net/mailx.html"
+SECTION = "console/network"
+
+PRIORITY = "required"
+LICENSE = "BSD with advertising and MPLv1.1"
+PR = "r0"
+
+#COPYING or Licence
+LIC_FILES_CHKSUM = "file://COPYING;md5=4202a0a62910cf94f7af8a3436a2a2dd"
+
+SRC_URI = "http://downloads.sourceforge.net/heirloom/mailx-12.4.tar.bz2 \
+          "
+SRC_URI[md5sum] = "0c93759e34200eb56a0e7c464680a54a"
+SRC_URI[sha256sum] = "92201e769fe346bc0364c87437a330ef3c97ab3e9d7b2235b93f509e85e5716a"
+
+do_install() {
+       make DESTDIR=${D} PREFIX=${prefix} UCBINSTALL=install install
+}
-- 
1.7.0.4



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

* [PATCH 2/3] gcc: Add "--enable-clocale=gnu" option explicitly
  2010-12-22  9:46 [PATCH 0/3] Fix some failures of LSB test Jingdong Lu
@ 2010-12-22  9:46 ` Jingdong Lu
  0 siblings, 0 replies; 6+ messages in thread
From: Jingdong Lu @ 2010-12-22  9:46 UTC (permalink / raw)
  To: poky

Add "--enable-clocale=gun" option for gcc configuration explicitly in order to make sure C++ library can use correct locale module.

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

diff --git a/meta/recipes-devtools/gcc/gcc-configure-common.inc b/meta/recipes-devtools/gcc/gcc-configure-common.inc
index 4393777..b212fdc 100644
--- a/meta/recipes-devtools/gcc/gcc-configure-common.inc
+++ b/meta/recipes-devtools/gcc/gcc-configure-common.inc
@@ -27,7 +27,7 @@ EXTRA_OECONF_INTERMEDIATE ?= ""
 
 GCCMULTILIB = "--disable-multilib"
 
-EXTRA_OECONF = "${@['--enable-clocale=generic', ''][bb.data.getVar('USE_NLS', d, 1) != 'no']} \
+EXTRA_OECONF = "${@['--enable-clocale=generic', ' --enable-clocale=gnu'][bb.data.getVar('USE_NLS', d, 1) != 'no']} \
                 --with-gnu-ld \
                 --enable-shared \
                 --enable-languages=${LANGUAGES} \
-- 
1.7.0.4



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

* [PATCH 2/3] gcc: Add "--enable-clocale=gnu" option explicitly
  2010-12-21  9:54 [PATCH 0/3] Fix failures of LSB Jingdong Lu
@ 2010-12-21  9:54 ` Jingdong Lu
  0 siblings, 0 replies; 6+ messages in thread
From: Jingdong Lu @ 2010-12-21  9:54 UTC (permalink / raw)
  To: poky

Add "--enable-clocale=gun" option for gcc configuration explicitly in order to make sure C++ library can use correct locale module.

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

diff --git a/meta/recipes-devtools/gcc/gcc-configure-common.inc b/meta/recipes-devtools/gcc/gcc-configure-common.inc
index 4393777..b212fdc 100644
--- a/meta/recipes-devtools/gcc/gcc-configure-common.inc
+++ b/meta/recipes-devtools/gcc/gcc-configure-common.inc
@@ -27,7 +27,7 @@ EXTRA_OECONF_INTERMEDIATE ?= ""
 
 GCCMULTILIB = "--disable-multilib"
 
-EXTRA_OECONF = "${@['--enable-clocale=generic', ''][bb.data.getVar('USE_NLS', d, 1) != 'no']} \
+EXTRA_OECONF = "${@['--enable-clocale=generic', ' --enable-clocale=gnu'][bb.data.getVar('USE_NLS', d, 1) != 'no']} \
                 --with-gnu-ld \
                 --enable-shared \
                 --enable-languages=${LANGUAGES} \
-- 
1.7.0.4



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

end of thread, other threads:[~2010-12-23  7:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-12-23  7:35 [PATCH 0/3] Fix some failures of LSB test Jingdong Lu
2010-12-23  7:35 ` [PATCH 1/3] perl: Add GDBM_File into perl extension Jingdong Lu
2010-12-23  7:35 ` [PATCH 2/3] gcc: Add "--enable-clocale=gnu" option explicitly Jingdong Lu
2010-12-23  7:35 ` [PATCH 3/3] mailx: Add mailx Jingdong Lu
  -- strict thread matches above, loose matches on Subject: below --
2010-12-22  9:46 [PATCH 0/3] Fix some failures of LSB test Jingdong Lu
2010-12-22  9:46 ` [PATCH 2/3] gcc: Add "--enable-clocale=gnu" option explicitly Jingdong Lu
2010-12-21  9:54 [PATCH 0/3] Fix failures of LSB Jingdong Lu
2010-12-21  9:54 ` [PATCH 2/3] gcc: Add "--enable-clocale=gnu" option explicitly Jingdong Lu

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.