summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlberto Ruiz <aruiz@um.es>2015-07-24 11:10:04 +0200
committerAlberto Ruiz <aruiz@um.es>2015-07-24 11:10:04 +0200
commitc45e6c023a40d99103f41009f971b1712ed023d3 (patch)
treeb3bc0569e1c5f63ce6d2d1a912ea2a084306222d
parent95632a6f0e74cc5a781e756d486020d516959ac4 (diff)
Revert "Correct names & Add C sources to the .cabal file"
This reverts commit d0d0e6871518ae0a41fe1edd5d1c7b80e1704058.
-rw-r--r--packages/base/hmatrix.cabal2
-rw-r--r--packages/base/src/Internal/C/vector-aux.c2
2 files changed, 1 insertions, 3 deletions
diff --git a/packages/base/hmatrix.cabal b/packages/base/hmatrix.cabal
index 9b8b108..31bea3e 100644
--- a/packages/base/hmatrix.cabal
+++ b/packages/base/hmatrix.cabal
@@ -25,7 +25,6 @@ build-type: Simple
25extra-source-files: THANKS.md CHANGELOG 25extra-source-files: THANKS.md CHANGELOG
26 26
27extra-source-files: src/Internal/C/lapack-aux.h 27extra-source-files: src/Internal/C/lapack-aux.h
28 src/C/windows_random_r.h
29 28
30flag openblas 29flag openblas
31 description: Link with OpenBLAS (https://github.com/xianyi/OpenBLAS) optimized libraries. 30 description: Link with OpenBLAS (https://github.com/xianyi/OpenBLAS) optimized libraries.
@@ -78,7 +77,6 @@ library
78 77
79 C-sources: src/Internal/C/lapack-aux.c 78 C-sources: src/Internal/C/lapack-aux.c
80 src/Internal/C/vector-aux.c 79 src/Internal/C/vector-aux.c
81 src/C/windows_random_r.c
82 80
83 81
84 extensions: ForeignFunctionInterface, 82 extensions: ForeignFunctionInterface,
diff --git a/packages/base/src/Internal/C/vector-aux.c b/packages/base/src/Internal/C/vector-aux.c
index a370214..b165fab 100644
--- a/packages/base/src/Internal/C/vector-aux.c
+++ b/packages/base/src/Internal/C/vector-aux.c
@@ -7,7 +7,7 @@ typedef float complex TCF;
7#undef complex 7#undef complex
8 8
9#include "lapack-aux.h" 9#include "lapack-aux.h"
10#include "windows_random_r.h" 10#include "custom_random_r.h"
11 11
12#define V(x) x##n,x##p 12#define V(x) x##n,x##p
13 13