*** addons-orig.py	Thu Feb 24 16:16:11 2005
--- addons.py	Sat May 21 23:32:57 2005
***************
*** 42,49 ****
--- 42,56 ----
      # something like liblapack.a, liblapack.so, etc.
  
+     # Set to list directories to be searched for BLAS and LAPACK libraries
+     lapack_compile_args = []
+     lapack_link_args = [] 
+     lapack_include_dirs = ["Packages/LinearAlgebra2/Src"] 
+ 
      if os.path.exists('/System/Library/Frameworks/vecLib.framework'):
          # use Apple's optimized BLAS implementation
          lapack_libs = []
          lapack_link_args = ['-framework', 'vecLib']
+         lapack_compile_args = ['-framework', 'vecLib']
+         lapack_dirs = []
      elif USE_ABSOFT:  # Absoft Fortran
          lapack_dirs = ['/usr/local/lib/atlas', '/opt/absoft/lib']
***************
*** 53,62 ****
          lapack_dirs = ['/usr/local/lib/atlas']
          lapack_libs = ['lapack', 'cblas', 'f77blas', 'atlas', 'g2c', 'm']
-         lapack_link_args = []
-  
-     # Set to list directories to be searched for BLAS and LAPACK libraries
-     lapack_compile_args = []
-     lapack_link_args = []
-     lapack_include_dirs = ["Packages/LinearAlgebra2/Src"]
      
      if os.environ.has_key('LINALG_LIB'):
--- 60,63 ----
