[oe-commits] Enrico Scholz : ncurses: fixed widec builds for native targets

git version control git at git.openembedded.org
Sun Aug 29 19:54:48 UTC 2010


Module: openembedded.git
Branch: org.openembedded.dev
Commit: 6f81dd32a13bf3f1a07ce0ebe7a654fa473ea302
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=6f81dd32a13bf3f1a07ce0ebe7a654fa473ea302

Author: Enrico Scholz <enrico.scholz at sigma-chemnitz.de>
Date:   Sun Aug 29 21:41:29 2010 +0200

ncurses: fixed widec builds for native targets

-D_GNU_SOURCE was not propagated when building native helper tools and
must be added to CPPFLAGS hence.

By fixing this, widec build can be enabled for native and sdk.

Signed-off-by: Enrico Scholz <enrico.scholz at sigma-chemnitz.de>

---

 recipes/ncurses/ncurses_5.7.bb |   10 +++++++---
 1 files changed, 7 insertions(+), 3 deletions(-)

diff --git a/recipes/ncurses/ncurses_5.7.bb b/recipes/ncurses/ncurses_5.7.bb
index a523163..32aee93 100644
--- a/recipes/ncurses/ncurses_5.7.bb
+++ b/recipes/ncurses/ncurses_5.7.bb
@@ -31,10 +31,14 @@ EXTRA_AUTORECONF = "-I m4"
 CONFIG_SITE =+ "${WORKDIR}/config.cache"
 
 # Whether to enable separate widec libraries; must be 'true' or 'false'
+#
+# TODO: remove this variable when widec is supported in every setup?
 ENABLE_WIDEC = "true"
-# Build breaks on Ubuntu else :(
-ENABLE_WIDEC_virtclass-native = "false"
 
+# _GNU_SOURCE is required for widec stuff and is detected automatically
+# for target objects.  But it must be set manually for native and sdk
+# builds.
+BUILD_CPPFLAGS += "-D_GNU_SOURCE"
 
 # Override the function from the autotools class; ncurses requires a
 # patched autoconf213 to generate the configure script. This autoconf
@@ -74,7 +78,7 @@ do_configure() {
                         --with-build-cpp="${BUILD_CPP}" \
                         --with-build-ld="${BUILD_LD}" \
                         --with-build-cflags="${BUILD_CFLAGS}" \
-                        --with-build-cppflags='${BUILD_CPPFLAGS} -D_GNU_SOURCE' \
+                        --with-build-cppflags='${BUILD_CPPFLAGS}' \
                         --with-build-ldflags='${BUILD_LDFLAGS}' \
                         "$@"
                 cd ..





More information about the Openembedded-commits mailing list