summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2011-08-17 12:24:11 +0200
committerMarc Kleine-Budde <mkl@pengutronix.de>2011-08-17 16:40:06 +0200
commit1f10b6d9832de29118da972d993b10bcc5fd0058 (patch)
tree5bcc8a15dcafe56c238a613f2c6f51f22acc992f
parent7faab1d09118c2d755f092667da2d28886ca5177 (diff)
downloadptxdist-1f10b6d9832de29118da972d993b10bcc5fd0058.tar.gz
ptxdist-1f10b6d9832de29118da972d993b10bcc5fd0058.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> (cherry picked from commit 026818241ff182e23cdf6fae6fbdd0d35aef72b4) Signed-off-by: Marc Kleine-Budde <mkl@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 d1fa0a08d..de0f22b32 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