diff options
Diffstat (limited to 'meta/packages/python/python-native-2.6.5/nohostlibs.patch')
| -rw-r--r-- | meta/packages/python/python-native-2.6.5/nohostlibs.patch | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/meta/packages/python/python-native-2.6.5/nohostlibs.patch b/meta/packages/python/python-native-2.6.5/nohostlibs.patch new file mode 100644 index 0000000000..7020f3c2a9 --- /dev/null +++ b/meta/packages/python/python-native-2.6.5/nohostlibs.patch | |||
| @@ -0,0 +1,53 @@ | |||
| 1 | Index: Python-2.6.1/setup.py | ||
| 2 | =================================================================== | ||
| 3 | --- Python-2.6.1.orig/setup.py 2009-11-13 16:20:47.000000000 +0000 | ||
| 4 | +++ Python-2.6.1/setup.py 2009-11-13 16:28:00.000000000 +0000 | ||
| 5 | @@ -310,8 +310,8 @@ | ||
| 6 | |||
| 7 | def detect_modules(self): | ||
| 8 | # Ensure that /usr/local is always used | ||
| 9 | - add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib') | ||
| 10 | - add_dir_to_list(self.compiler.include_dirs, '/usr/local/include') | ||
| 11 | + #add_dir_to_list(self.compiler.library_dirs, '/usr/local/lib') | ||
| 12 | + #add_dir_to_list(self.compiler.include_dirs, '/usr/local/include') | ||
| 13 | |||
| 14 | # Add paths specified in the environment variables LDFLAGS and | ||
| 15 | # CPPFLAGS for header and library files. | ||
| 16 | @@ -347,10 +347,10 @@ | ||
| 17 | for directory in reversed(options.dirs): | ||
| 18 | add_dir_to_list(dir_list, directory) | ||
| 19 | |||
| 20 | - if os.path.normpath(sys.prefix) != '/usr': | ||
| 21 | - add_dir_to_list(self.compiler.library_dirs, | ||
| 22 | + | ||
| 23 | + add_dir_to_list(self.compiler.library_dirs, | ||
| 24 | sysconfig.get_config_var("LIBDIR")) | ||
| 25 | - add_dir_to_list(self.compiler.include_dirs, | ||
| 26 | + add_dir_to_list(self.compiler.include_dirs, | ||
| 27 | sysconfig.get_config_var("INCLUDEDIR")) | ||
| 28 | |||
| 29 | try: | ||
| 30 | @@ -361,11 +361,8 @@ | ||
| 31 | # lib_dirs and inc_dirs are used to search for files; | ||
| 32 | # if a file is found in one of those directories, it can | ||
| 33 | # be assumed that no additional -I,-L directives are needed. | ||
| 34 | - lib_dirs = self.compiler.library_dirs + [ | ||
| 35 | - '/lib64', '/usr/lib64', | ||
| 36 | - '/lib', '/usr/lib', | ||
| 37 | - ] | ||
| 38 | - inc_dirs = self.compiler.include_dirs + ['/usr/include'] | ||
| 39 | + lib_dirs = self.compiler.library_dirs | ||
| 40 | + inc_dirs = self.compiler.include_dirs | ||
| 41 | exts = [] | ||
| 42 | missing = [] | ||
| 43 | |||
| 44 | @@ -583,8 +580,7 @@ | ||
| 45 | readline_libs.append('ncurses') | ||
| 46 | elif self.compiler.find_library_file(lib_dirs, 'curses'): | ||
| 47 | readline_libs.append('curses') | ||
| 48 | - elif self.compiler.find_library_file(lib_dirs + | ||
| 49 | - ['/usr/lib/termcap'], | ||
| 50 | + elif self.compiler.find_library_file(lib_dirs, | ||
| 51 | 'termcap'): | ||
| 52 | readline_libs.append('termcap') | ||
| 53 | exts.append( Extension('readline', ['readline.c'], | ||
