]> pilppa.org Git - familiar-h63xx-build.git/blob - org.handhelds.familiar/packages/python/python-numeric/no-lapack.patch
OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e3...
[familiar-h63xx-build.git] / org.handhelds.familiar / packages / python / python-numeric / no-lapack.patch
1
2 #
3 # Patch managed by http://www.holgerschurig.de/patcher.html
4 #
5
6 --- Numeric-23.7/setup.py~nolapack
7 +++ Numeric-23.7/setup.py
8 @@ -32,7 +32,7 @@
9      mathlibs = []
10  
11  # delete all but the first one in this list if using your own LAPACK/BLAS
12 -sourcelist = [os.path.join('Src', 'lapack_litemodule.c'),
13 +sourcelist = [
14                #os.path.join('Src', 'blas_lite.c'), 
15                #os.path.join('Src', 'f2c_lite.c'), 
16                #os.path.join('Src', 'zlapack_lite.c'),
17 @@ -40,12 +40,12 @@
18               ]
19  # set these to use your own BLAS;
20  
21 -library_dirs_list = ['/usr/lib/atlas']
22 -libraries_list = ['lapack', 'cblas', 'f77blas', 'atlas', 'g2c'] 
23 +library_dirs_list = []
24 +libraries_list = [] 
25  
26  # set to true (1), if you also want BLAS optimized matrixmultiply/dot/innerproduct
27 -use_dotblas = 1 
28 -include_dirs = ['/usr/include/atlas']  
29 +use_dotblas = 0
30 +include_dirs = []  
31                     # You may need to set this to find cblas.h
32                     #  e.g. on UNIX using ATLAS this should be ['/usr/include/atlas']
33  extra_link_args = []