summaryrefslogtreecommitdiff
path: root/numpy/fft/fftpack.c
Commit message (Collapse)AuthorAgeFilesLines
* MAINT: fftpack.c needs #define NPY_NO_DEPRECATED_API NPY_API_VERSION.Charles Harris2015-02-141-6/+3
| | | | This is because of the inclusion of numpy/ndarraytypes.h in b3121e8.
* BLD: fix include order of headers, otherwise AIX build fails. See gh-5474.Ralf Gommers2015-01-281-1/+1
|
* BUG: Rename fft C functions to avoid name conflictRyan Nelson2014-12-041-19/+22
| | | | | | | | | | | | | | | | | Resolves issue #565. The public fft functions defined in fftpack.c have name conflicts on certain systems, so the prefix "npy_" was added to these functions. Added NPY_VISIBILITY_HIDDEN to the public functions in both fftpack.h and fftpack.c. This required rearranging the includes at the beginning of fftpack_litemodule.c so that this macro was properly defined. In addition, Python.h and numpy/ndarraytypes.h were included in the fftpack.h. One function, rfftb1, was flagged as `static` as it was not exported in the header. Build and tests pass using both Python 2.7.8 and Python 3.4.2.
* Fix warnings found by Intel compiler due to unused variables that were set. ↵Travis Oliphant2006-12-021-2/+2
| | | | Make ones work for compound types.
* Many name-changes in oldnumeric. This may break some numpy code that was ↵Travis Oliphant2006-08-041-0/+1501
using the oldnumeric interface.