Blob Blame History Raw
--- setup.py.orig	2015-09-21 23:26:00.000000000 -0600
+++ setup.py	2015-10-08 21:56:01.219785745 -0600
@@ -6,11 +6,11 @@
 import os
 
 # Modifiy this if BLAS and LAPACK libraries are not in /usr/lib.
-BLAS_LIB_DIR = '/usr/lib'
+BLAS_LIB_DIR = '/usr/lib/atlas'
 
 # Default names of BLAS and LAPACK libraries
-BLAS_LIB = ['blas']
-LAPACK_LIB = ['lapack']
+BLAS_LIB = ['satlas']
+LAPACK_LIB = ['satlas']
 BLAS_EXTRA_LINK_ARGS = []
 
 # Set environment variable BLAS_NOUNDERSCORES=1 if your BLAS/LAPACK do
@@ -19,7 +19,7 @@
 
 # Set to 1 if you are using the random number generators in the GNU
 # Scientific Library.
-BUILD_GSL = 0
+BUILD_GSL = 1
 
 # Directory containing libgsl (used only when BUILD_GSL = 1).
 GSL_LIB_DIR = '/usr/lib'
@@ -28,7 +28,7 @@
 GSL_INC_DIR = '/usr/include/gsl'
 
 # Set to 1 if you are installing the fftw module.
-BUILD_FFTW = 0 
+BUILD_FFTW = 1 
 
 # Directory containing libfftw3 (used only when BUILD_FFTW = 1).
 FFTW_LIB_DIR = '/usr/lib'
@@ -37,7 +37,7 @@
 FFTW_INC_DIR = '/usr/include'
 
 # Set to 1 if you are installing the glpk module.
-BUILD_GLPK = 0 
+BUILD_GLPK = 1 
 
 # Directory containing libglpk (used only when BUILD_GLPK = 1).
 GLPK_LIB_DIR = '/usr/lib'
@@ -46,22 +46,22 @@
 GLPK_INC_DIR = '/usr/include'
 
 # Set to 1 if you are installing the DSDP module.
-BUILD_DSDP = 0
+BUILD_DSDP = 1
 
 # Directory containing libdsdp (used only when BUILD_DSDP = 1).
 DSDP_LIB_DIR = '/usr/lib'
  
 # Directory containing dsdp5.h (used only when BUILD_DSDP = 1).
-DSDP_INC_DIR = '/usr/include/dsdp'
+DSDP_INC_DIR = '/usr/include/DSDP'
 
 # Set to 1 to use external SuiteSparse library
-SUITESPARSE_EXT_LIB = 0
+SUITESPARSE_EXT_LIB = 1
 
 # Directory containing external SuiteSparse library
-SUITESPARSE_LIB_DIR = '/usr/local/lib'
+SUITESPARSE_LIB_DIR = '/usr/lib'
 
 # Directory containing SuiteSparse header files
-SUITESPARSE_INC_DIR = '/usr/local/include'
+SUITESPARSE_INC_DIR = '/usr/include/suitesparse'
 
 # No modifications should be needed below this line.