mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-19 15:32:59 +02:00
Zwischencommit fuer LFS.
git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@318 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8
This commit is contained in:
32
src/patches/Python-2.4.3-gdbm-1.patch
Normal file
32
src/patches/Python-2.4.3-gdbm-1.patch
Normal file
@@ -0,0 +1,32 @@
|
||||
Submitted By: Jim Gifford (jim at linuxfromscratch dot org)
|
||||
Date: 2003-12-26
|
||||
Initial Package Version: 2.3.3
|
||||
Origin: Greg Schafer and Jim Gifford
|
||||
Description: Fixes Python build issue with gdbm
|
||||
|
||||
*** WARNING: renaming "dbm" since importing it failed:
|
||||
build/lib.linux-i686-2.3/dbm.so: undefined symbol: dbm_firstkey
|
||||
|
||||
|
||||
|
||||
$LastChangedBy: dnicholson $
|
||||
$Date: 2006-04-20 10:08:34 -0600 (Thu, 20 Apr 2006) $
|
||||
|
||||
diff -Naur Python-2.3.2.orig/setup.py Python-2.3.2/setup.py
|
||||
--- Python-2.3.2.orig/setup.py 2003-09-22 01:19:45.000000000 +0000
|
||||
+++ Python-2.3.2/setup.py 2003-10-13 06:28:34.000000000 +0000
|
||||
@@ -596,12 +596,12 @@
|
||||
if self.compiler.find_library_file(lib_dirs, 'ndbm'):
|
||||
ndbm_libs = ['ndbm']
|
||||
else:
|
||||
- ndbm_libs = []
|
||||
+ ndbm_libs = ['gdbm', 'gdbm_compat']
|
||||
exts.append( Extension('dbm', ['dbmmodule.c'],
|
||||
define_macros=[('HAVE_NDBM_H',None)],
|
||||
libraries = ndbm_libs ) )
|
||||
elif (self.compiler.find_library_file(lib_dirs, 'gdbm')
|
||||
- and find_file("gdbm/ndbm.h", inc_dirs, []) is not None):
|
||||
+ and find_file("ndbm.h", inc_dirs, []) is not None):
|
||||
exts.append( Extension('dbm', ['dbmmodule.c'],
|
||||
define_macros=[('HAVE_GDBM_NDBM_H',None)],
|
||||
libraries = ['gdbm'] ) )
|
||||
1887
src/patches/openssl-0.9.8d-fix_manpages-1.patch
Normal file
1887
src/patches/openssl-0.9.8d-fix_manpages-1.patch
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user