diff options
author | David Cournapeau <cournape@gmail.com> | 2009-07-20 09:47:30 +0000 |
---|---|---|
committer | David Cournapeau <cournape@gmail.com> | 2009-07-20 09:47:30 +0000 |
commit | 520872500893f95f1676cdf6715c8d34b32a2449 (patch) | |
tree | b3c0b1f121fc7bd438ff061a05b2d190317c4564 /numpy/core/setup.py | |
parent | 3297529a67c57db3b7bb7c8d58f8d4829a23baf1 (diff) | |
download | numpy-520872500893f95f1676cdf6715c8d34b32a2449.tar.gz |
BUG: fix C99_FORMATS-related macros definition in both numscons/distutils builds.
Diffstat (limited to 'numpy/core/setup.py')
-rw-r--r-- | numpy/core/setup.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/numpy/core/setup.py b/numpy/core/setup.py index c1035aa9f..c25da264d 100644 --- a/numpy/core/setup.py +++ b/numpy/core/setup.py @@ -434,8 +434,6 @@ def configuration(parent_package='',top_path=None): # Check wether we can use inttypes (C99) formats if config_cmd.check_decl('PRIdPTR', headers = ['inttypes.h']): moredefs.append(('NPY_USE_C99_FORMATS', 1)) - else: - moredefs.append(('NPY_USE_C99_FORMATS', 0)) # Inline check inline = config_cmd.check_inline() |