]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Change how we handle alloca to conform with how it is suggested in the autoconf manua...
authorJoshua Colp <jcolp@digium.com>
Sun, 18 Nov 2007 17:01:41 +0000 (17:01 +0000)
committerJoshua Colp <jcolp@digium.com>
Sun, 18 Nov 2007 17:01:41 +0000 (17:01 +0000)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@89396 65c4cc65-6c06-0410-ace0-fbb531ad65f3

include/asterisk/compat.h

index ced14fc41bcc806df512399493c4f874e12b93a0..0dd3685d61c2489a36c23f95808f002aca3fc502 100644 (file)
 #endif
 
 #ifdef HAVE_ALLOCA_H
-#include <alloca.h>    /* not necessarily present - could be in stdlib */
-#elif defined(HAVE_ALLOCA)
-#include <malloc.h>    /* see if it is here... */
+#include <alloca.h>
+#elif defined(__GNUC__)
+#define alloca __builtin_alloca
+#elif defined(_AIX)
+#define alloca __alloca
+#elif defined(_MSC_VER)
+#include <malloc.h>
+#define alloca _alloca
 #endif
 
 #include <stdio.h>     /* this is always present */