1 From 863c09f640a5dfd33ff22915b0d5fee7bc5df70a Mon Sep 17 00:00:00 2001
2 From: Alexander Kanavin <alex.kanavin@gmail.com>
3 Date: Sun, 16 Feb 2020 17:50:25 +0100
4 Subject: [PATCH] configure.ac, setup.py: do not add a curses include path from
7 This leads to host contamination, and particularly can cause
8 curses modules to fail at runtime if the host curses is configured
9 differently to native curses (observed on current OpenSuse Tumbleweed
12 Upstream-Status: Inappropriate [oe-core specific]
13 Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com>
15 configure.ac | 6 ------
17 2 files changed, 8 deletions(-)
19 diff --git a/configure.ac b/configure.ac
20 index 915f475..c911011 100644
23 @@ -4828,12 +4828,6 @@ then
24 [Define if you have struct stat.st_mtimensec])
27 -# first curses header check
28 -ac_save_cppflags="$CPPFLAGS"
29 -if test "$cross_compiling" = no; then
30 - CPPFLAGS="$CPPFLAGS -I/usr/include/ncursesw"
33 AC_CHECK_HEADERS(curses.h ncurses.h)
35 # On Solaris, term.h requires curses.h
36 diff --git a/setup.py b/setup.py
37 index b0f1541..7208cd0 100644
40 @@ -973,8 +973,6 @@ class PyBuildExt(build_ext):
41 panel_library = 'panel'
42 if curses_library == 'ncursesw':
43 curses_defines.append(('HAVE_NCURSESW', '1'))
44 - if not CROSS_COMPILING:
45 - curses_includes.append('/usr/include/ncursesw')
46 # Bug 1464056: If _curses.so links with ncursesw,
47 # _curses_panel.so must link with panelw.
48 panel_library = 'panelw'