summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2011-08-17 12:24:11 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2011-08-17 12:24:13 +0200
commit026818241ff182e23cdf6fae6fbdd0d35aef72b4 (patch)
tree65567d471f4a4dd2833ba48b7610fb9962ccb23d
parent4ff91b789dbc7e640b445f22ba694721cae4df2b (diff)
downloadptxdist-026818241ff182e23cdf6fae6fbdd0d35aef72b4.tar.gz
ptxdist-026818241ff182e23cdf6fae6fbdd0d35aef72b4.tar.xz
ncurses: disable pthread and reentrant
these options make ncurses opaque and break other packages Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/ncurses.make9
1 files changed, 4 insertions, 5 deletions
diff --git a/rules/ncurses.make b/rules/ncurses.make
index 373785cde..9b4d0e02e 100644
--- a/rules/ncurses.make
+++ b/rules/ncurses.make
@@ -61,12 +61,11 @@ NCURSES_AUTOCONF_SHARED := \
--disable-interop \
--disable-rpath \
--disable-rpath-hack \
- --enable-reentrant
+ --without-pthread \
+ --disable-reentrant
-# do this to get libncurses with threads but without a trailing "t":
-NCURSES_AUTOCONF_SHARED += \
- --with-pthread=yes \
- --enable-weak-symbols
+# NOTE: reentrant enables opaque, which breaks other packages
+# pthread enables reentrant, so don't enable it either
# enable wide char support on demand only
ifdef PTXCONF_NCURSES_WIDE_CHAR