Blob Blame History Raw
--- setup.py.orig	2018-08-30 11:51:30.000000000 -0600
+++ setup.py	2018-10-09 16:09:11.715276524 -0600
@@ -7,8 +7,8 @@ import versioneer
 BLAS_LIB_DIR = '/usr/lib'
 
 # Default names of BLAS and LAPACK libraries
-BLAS_LIB = ['blas']
-LAPACK_LIB = ['lapack']
+BLAS_LIB = ['openblas']
+LAPACK_LIB = ['openblas']
 BLAS_EXTRA_LINK_ARGS = []
 
 # Set environment variable BLAS_NOUNDERSCORES=1 if your BLAS/LAPACK do
@@ -17,7 +17,7 @@ BLAS_NOUNDERSCORES = False
 
 # 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'
@@ -26,7 +26,7 @@ GSL_LIB_DIR = '/usr/lib'
 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'
@@ -35,7 +35,7 @@ FFTW_LIB_DIR = '/usr/lib'
 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'
@@ -44,13 +44,13 @@ GLPK_LIB_DIR = '/usr/lib'
 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'
 
 # Guess SUITESPARSE_LIB_DIR and SUITESPARSE_INC_DIR
 if sys.platform.startswith("darwin"):
@@ -69,7 +69,7 @@ else:
     else:
         # Default
         SUITESPARSE_LIB_DIR = '/usr/lib'
-        SUITESPARSE_INC_DIR = '/usr/include'
+        SUITESPARSE_INC_DIR = '/usr/include/suitesparse'
 
 if sys.platform.startswith("win"):
     GSL_MACROS = [('GSL_DLL',''),('WIN32','')]