[svn-commits] seanbright: trunk r681 - in /trunk: ./ autoconfig.h.in configure configure.ac
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Wed Dec 23 10:49:51 CST 2009
Author: seanbright
Date: Wed Dec 23 10:49:49 2009
New Revision: 681
URL: http://svnview.digium.com/svn/menuselect?view=rev&rev=681
Log:
Merged revisions 680 via svnmerge from
https://origsvn.digium.com/svn/menuselect/branches/1.0
........
r680 | seanbright | 2009-12-23 11:48:32 -0500 (Wed, 23 Dec 2009) | 2 lines
Actually look for alloca() in alloca.h so that HAVE_ALLOCA_H will get defined.
........
Modified:
trunk/ (props changed)
trunk/autoconfig.h.in
trunk/configure
trunk/configure.ac
Propchange: trunk/
------------------------------------------------------------------------------
--- branch-1.0-merged (original)
+++ branch-1.0-merged Wed Dec 23 10:49:49 2009
@@ -1,1 +1,1 @@
-/branches/1.0:1-316,383,437,465,467,473,475,477,518,676,678
+/branches/1.0:1-316,383,437,465,467,473,475,477,518,676,678,680
Modified: trunk/autoconfig.h.in
URL: http://svnview.digium.com/svn/menuselect/trunk/autoconfig.h.in?view=diff&rev=681&r1=680&r2=681
==============================================================================
--- trunk/autoconfig.h.in (original)
+++ trunk/autoconfig.h.in Wed Dec 23 10:49:49 2009
@@ -7,6 +7,21 @@
#define _REENTRANT
#endif
+
+/* Define to one of `_getb67', `GETB67', `getb67' for Cray-2 and Cray-YMP
+ systems. This function is required for `alloca.c' support on those systems.
+ */
+#undef CRAY_STACKSEG_END
+
+/* Define to 1 if using `alloca.c'. */
+#undef C_ALLOCA
+
+/* Define to 1 if you have `alloca', as a function or macro. */
+#undef HAVE_ALLOCA
+
+/* Define to 1 if you have <alloca.h> and it should be used (not on Ultrix).
+ */
+#undef HAVE_ALLOCA_H
/* Define to 1 if you have the `asprintf' function. */
#undef HAVE_ASPRINTF
@@ -95,6 +110,14 @@
/* Define to the version of this package. */
#undef PACKAGE_VERSION
+/* If using the C implementation of alloca, define if you know the
+ direction of stack growth for your system; otherwise it will be
+ automatically deduced at runtime.
+ STACK_DIRECTION > 0 => grows toward higher addresses
+ STACK_DIRECTION < 0 => grows toward lower addresses
+ STACK_DIRECTION = 0 => direction of growth unknown */
+#undef STACK_DIRECTION
+
/* Define to 1 if you have the ANSI C header files. */
#undef STDC_HEADERS
Modified: trunk/configure.ac
URL: http://svnview.digium.com/svn/menuselect/trunk/configure.ac?view=diff&rev=681&r1=680&r2=681
==============================================================================
--- trunk/configure.ac (original)
+++ trunk/configure.ac Wed Dec 23 10:49:49 2009
@@ -42,7 +42,7 @@
AC_LANG(C)
-
+AC_FUNC_ALLOCA
AC_ARG_ENABLE([debug],
[AS_HELP_STRING([--enable-debug], [Turn on debug mode])],
[case "${enableval}" in
More information about the svn-commits
mailing list