forked from FFTW/fftw3
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
It looks like alloca() is broken on mingw64, and thus we need to disable it explicitly.
- Loading branch information
fftw
committed
Jun 10, 2009
1 parent
902651a
commit ddd2281
Showing
2 changed files
with
7 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
dnl Process this file with autoconf to produce a configure script. | ||
AC_INIT(fftw, 3.2.1, [email protected]) | ||
AC_INIT(fftw, 3.2.2alpha, [email protected]) | ||
AC_CONFIG_SRCDIR(kernel/ifftw.h) | ||
SHARED_VERSION_INFO="5:3:2" # CURRENT:REVISION:AGE | ||
|
||
|
@@ -44,6 +44,11 @@ if test "$ok" = "yes"; then | |
AC_DEFINE(FFTW_DEBUG_ALIGNMENT,1,[Define to enable alignment debugging hacks.]) | ||
fi | ||
|
||
AC_ARG_ENABLE(alloca, [AC_HELP_STRING([--enable-alloca],[enable use of the alloca() function (may be broken on mingw64)])], ok=$enableval, ok=yes) | ||
if test "$ok" = "yes"; then | ||
AC_DEFINE(FFTW_ENABLE_ALLOCA,1,[Define to enable the use of alloca().]) | ||
fi | ||
|
||
AC_ARG_ENABLE(single, [AC_HELP_STRING([--enable-single],[compile fftw in single precision])], ok=$enableval, ok=no) | ||
AC_ARG_ENABLE(float, [AC_HELP_STRING([--enable-float],[synonym for --enable-single])], ok=$enableval) | ||
if test "$ok" = "yes"; then | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters