diff options
author | Xavier de Gaye <xdegaye@users.sourceforge.net> | 2016-12-13 15:05:15 (GMT) |
---|---|---|
committer | Xavier de Gaye <xdegaye@users.sourceforge.net> | 2016-12-13 15:05:15 (GMT) |
commit | f191a9e8e4f3fbcf018fac4996d764c2b9d60800 (patch) | |
tree | e2a8663f5a61e01b512d57618cc5b5b3c32d56b3 /setup.py | |
parent | f852fff878a578bef805310b0bfb7cbd1980e689 (diff) | |
parent | e13c3201fb66c4c211b4ebb7604d1435bedc1015 (diff) | |
download | cpython-f191a9e8e4f3fbcf018fac4996d764c2b9d60800.zip cpython-f191a9e8e4f3fbcf018fac4996d764c2b9d60800.tar.gz cpython-f191a9e8e4f3fbcf018fac4996d764c2b9d60800.tar.bz2 |
Issue #28190: Merge 3.6.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1350,7 +1350,8 @@ class PyBuildExt(build_ext): panel_library = 'panel' if curses_library == 'ncursesw': curses_defines.append(('HAVE_NCURSESW', '1')) - curses_includes.append('/usr/include/ncursesw') + if not cross_compiling: + curses_includes.append('/usr/include/ncursesw') # Bug 1464056: If _curses.so links with ncursesw, # _curses_panel.so must link with panelw. panel_library = 'panelw' |