1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
scipy/spatial/qhull.c | 4 ++--
scipy/spatial/setup.py | 14 +++++++-------
2 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/scipy/spatial/qhull.c b/scipy/spatial/qhull.c
index 91e22b3..e433ae9 100644
--- a/scipy/spatial/qhull.c
+++ b/scipy/spatial/qhull.c
@@ -202,8 +202,8 @@
#include "numpy/arrayobject.h"
#include "numpy/ufuncobject.h"
#include "math.h"
-#include "qhull/src/qset.h"
-#include "qhull/src/qhull.h"
+#include "qhull/qset.h"
+#include "qhull/qhull.h"
#include "qhull_blas.h"
diff --git a/scipy/spatial/setup.py b/scipy/spatial/setup.py
index 7401d55..254c23d 100755
--- a/scipy/spatial/setup.py
+++ b/scipy/spatial/setup.py
@@ -16,13 +16,13 @@ def configuration(parent_package = '', top_path = None):
'random.c', 'rboxlib.c', 'stat.c', 'user.c', 'usermem.c',
'userprintf.c']
- config.add_library('qhull',
- sources=[join('qhull', 'src', x) for x in qhull_src],
- include_dirs=[get_python_inc(),
- get_numpy_include_dirs()],
- # XXX: GCC dependency!
- #extra_compiler_args=['-fno-strict-aliasing'],
- )
+# config.add_library('qhull',
+# sources=[join('qhull', 'src', x) for x in qhull_src],
+# include_dirs=[get_python_inc(),
+# get_numpy_include_dirs()],
+# # XXX: GCC dependency!
+# #extra_compiler_args=['-fno-strict-aliasing'],
+# )
lapack = dict(get_info('lapack_opt'))
try:
|