diff options
author | Chris Robinson <[email protected]> | 2014-03-25 18:16:03 -0700 |
---|---|---|
committer | Chris Robinson <[email protected]> | 2014-03-25 18:16:03 -0700 |
commit | 045959e9c00979128679ca77b10b929182fe3397 (patch) | |
tree | cba018b5a2aecfae723e372694a0281fdf936614 /config.h.in | |
parent | 03fd2b826658bae6bd975957c4af26ae42481756 (diff) |
Use C99 VLA instead of alloca when available
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config.h.in b/config.h.in index a0c11f36..c80a7d56 100644 --- a/config.h.in +++ b/config.h.in @@ -89,6 +89,9 @@ /* Define to the size of a long long int type */ #cmakedefine SIZEOF_LONG_LONG ${SIZEOF_LONG_LONG} +/* Define if we have C99 variable-length array support */ +#cmakedefine HAVE_C99_VLA + /* Define if we have GCC's destructor attribute */ #cmakedefine HAVE_GCC_DESTRUCTOR |