summaryrefslogtreecommitdiff
path: root/numpy/core/include
diff options
context:
space:
mode:
authorAlexander Shadchin <alexandr.shadchin@gmail.com>2017-03-06 03:55:24 +0300
committerCharles Harris <charlesr.harris@gmail.com>2017-03-05 17:55:24 -0700
commit15ed7aff158b1c64a336856007fc746b6805801c (patch)
treea2296ec3d210d3d7830c9dea4a61b6b9a6797914 /numpy/core/include
parent15325328b0cee99543ce015ad90aad7ceddca4b6 (diff)
downloadnumpy-15ed7aff158b1c64a336856007fc746b6805801c.tar.gz
MAINT: Remove files and constants only needed for Bento. (#8744)
* BLD: Remove unused _numpyconfig.h.in That file was needed for the bento build, for which support was removed in numpy 1.11.0 * BLD: Remove unused PYTHON_HAS_UNICODE_WIDE The need for variable also went away for Bento.
Diffstat (limited to 'numpy/core/include')
-rw-r--r--numpy/core/include/numpy/_numpyconfig.h.in52
1 files changed, 0 insertions, 52 deletions
diff --git a/numpy/core/include/numpy/_numpyconfig.h.in b/numpy/core/include/numpy/_numpyconfig.h.in
deleted file mode 100644
index 63e56d8de..000000000
--- a/numpy/core/include/numpy/_numpyconfig.h.in
+++ /dev/null
@@ -1,52 +0,0 @@
-#ifndef _NPY_NUMPYCONFIG_H_
-#error this header should not be included directly, always include numpyconfig.h instead
-#endif
-
-#define NPY_SIZEOF_SHORT @SIZEOF_SHORT@
-#define NPY_SIZEOF_INT @SIZEOF_INT@
-#define NPY_SIZEOF_LONG @SIZEOF_LONG@
-#define NPY_SIZEOF_FLOAT @SIZEOF_FLOAT@
-#define NPY_SIZEOF_DOUBLE @SIZEOF_DOUBLE@
-#define NPY_SIZEOF_LONGDOUBLE @SIZEOF_LONG_DOUBLE@
-#define NPY_SIZEOF_PY_INTPTR_T @SIZEOF_PY_INTPTR_T@
-#define NPY_SIZEOF_OFF_T @SIZEOF_OFF_T@
-
-#define NPY_SIZEOF_COMPLEX_FLOAT @SIZEOF_COMPLEX_FLOAT@
-#define NPY_SIZEOF_COMPLEX_DOUBLE @SIZEOF_COMPLEX_DOUBLE@
-#define NPY_SIZEOF_COMPLEX_LONGDOUBLE @SIZEOF_COMPLEX_LONG_DOUBLE@
-
-@DEFINE_NPY_HAVE_DECL_ISNAN@
-@DEFINE_NPY_HAVE_DECL_ISINF@
-@DEFINE_NPY_HAVE_DECL_ISFINITE@
-@DEFINE_NPY_HAVE_DECL_SIGNBIT@
-
-@DEFINE_NPY_NO_SIGNAL@
-#define NPY_NO_SMP @NPY_NO_SMP@
-
-/* XXX: this has really nothing to do in a config file... */
-#define NPY_MATHLIB @MATHLIB@
-
-@DEFINE_NPY_SIZEOF_LONGLONG@
-@DEFINE_NPY_SIZEOF_PY_LONG_LONG@
-
-@DEFINE_NPY_RELAXED_STRIDES_CHECKING@
-
-#define NPY_VISIBILITY_HIDDEN @VISIBILITY_HIDDEN@
-
-@DEFINE_NPY_USE_C99_FORMATS@
-@DEFINE_NPY_HAVE_COMPLEX_DOUBLE@
-@DEFINE_NPY_HAVE_COMPLEX_FLOAT@
-@DEFINE_NPY_HAVE_COMPLEX_LONG_DOUBLE@
-@DEFINE_NPY_USE_C99_COMPLEX@
-
-#define NPY_ABI_VERSION @NPY_ABI_VERSION@
-#define NPY_API_VERSION @NPY_API_VERSION@
-
-@DEFINE_NPY_HAVE_ENDIAN_H@
-@DEFINE_NPY_HAVE_SYS_ENDIAN_H@
-
-/* Ugly, but we can't test this in a proper manner without requiring a C++
- * compiler at the configuration stage of numpy ? */
-#ifndef __STDC_FORMAT_MACROS
- #define __STDC_FORMAT_MACROS 1
-#endif