summaryrefslogtreecommitdiff
path: root/lang/newlisp-devel/files/patch-modules_gsl.lsp
diff options
context:
space:
mode:
Diffstat (limited to 'lang/newlisp-devel/files/patch-modules_gsl.lsp')
-rw-r--r--lang/newlisp-devel/files/patch-modules_gsl.lsp18
1 files changed, 0 insertions, 18 deletions
diff --git a/lang/newlisp-devel/files/patch-modules_gsl.lsp b/lang/newlisp-devel/files/patch-modules_gsl.lsp
deleted file mode 100644
index 9a599c4e3cec..000000000000
--- a/lang/newlisp-devel/files/patch-modules_gsl.lsp
+++ /dev/null
@@ -1,18 +0,0 @@
---- modules/gsl.lsp.orig
-+++ modules/gsl.lsp
-@@ -169,6 +169,7 @@
- (= ostype "Win32") "libgsl-0.dll" ; 32-bit
- (= ostype "OSX") "libgsl.dylib" ; 32-bit
- (= ostype "Linux") "/usr/local/lib/libgsl.so" ; 32-bit or 64-bit
-+ (= ostype "BSD") "/usr/local/lib/libgsl.so" ; 32-bit or 64-bit
- ))
-
- ; load libgslcblas which contans functions referenced by libgsl
-@@ -179,6 +180,7 @@
- (if
- (= ostype "OSX") (import "libgslcblas.dylib" "cblas_sdsdot")
- (= ostype "Linux") (import "/usr/local/lib/libgslcblas.so" "cblas_sdsdot")
-+ (= ostype "BSD") (import "/usr/local/lib/libgslcblas.so" "cblas_sdsdot")
- )
-
- ; structs are defined but only needed for debugging, instead use "void*"