Revert "fix python3 build on SLED11"

Failures to build some python modules are actually not fatal, I just got
confused because the whole python build runs in parallel to the normal make.
This reverts commit f4ae375c00.
This commit is contained in:
Luboš Luňák 2012-12-04 01:19:38 +01:00
parent 4e593d047b
commit aaee2f77bd
2 changed files with 0 additions and 12 deletions

View file

@ -30,7 +30,6 @@ $(eval $(call gb_UnpackedTarball_add_patches,python3,\
python3/python-3.3.0-ssl.patch.1 \
python3/python-3.3.0-implicit-int.patch.1 \
python3/python-3.3.0-ffi-clang.patch.1 \
python3/python-3.3.0-ncurses.patch \
))
# vim: set noet sw=4 ts=4:

View file

@ -1,11 +0,0 @@
--- a/python3/setup.py 2012-12-04 00:40:57.000000000 +0100
+++ b/python3/setup.py 2012-12-04 00:53:49.000000000 +0100
@@ -1289,6 +1279,8 @@
# Building with the system-suppied combined libncurses/libpanel
curses_defines.append(('HAVE_NCURSESW', '1'))
curses_defines.append(('_XOPEN_SOURCE_EXTENDED', '1'))
+ elif curses_library == 'ncurses':
+ curses_includes.append('/usr/include/ncurses')
if curses_library.startswith('ncurses'):
curses_libs = [curses_library]