From 74ca6d1ddb1c5a4fbe9ddb29566878efe1761897 Mon Sep 17 00:00:00 2001 From: Ira Cooper Date: Fri, 3 Feb 2012 16:47:18 -0800 Subject: [PATCH] s3-popt: Fix configure.developer builds on Solairs. alloca.h needs to be included, or the build complains the implicit definition of alloca. Signed-off-by: Jeremy Allison Autobuild-User: Jeremy Allison Autobuild-Date: Sat Feb 4 03:27:42 CET 2012 on sn-devel-104 --- lib/popt/system.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/popt/system.h b/lib/popt/system.h index 1d1b9dae887..bbb4f6cc264 100644 --- a/lib/popt/system.h +++ b/lib/popt/system.h @@ -58,6 +58,8 @@ char *alloca (); # endif #elif defined(__GNUC__) && defined(__STRICT_ANSI__) #define alloca __builtin_alloca +#elif defined(__GNUC__) && defined(HAVE_ALLOCA_H) +# include #endif /*@-redecl -redef@*/ -- 2.34.1