Include alloca.h if available.
authorhanda <handa>
Thu, 16 Sep 2010 01:20:44 +0000 (01:20 +0000)
committerhanda <handa>
Thu, 16 Sep 2010 01:20:44 +0000 (01:20 +0000)
example/otflist.c
example/otftobdf.c
example/otfview.c
src/internal.h

index 5b64e0e..687d4c1 100644 (file)
@@ -31,6 +31,10 @@ write to the Free Software Foundation, Inc., 59 Temple Place, Suite
 #include FT_FREETYPE_H
 
 #include "config.h"
+#ifdef HAVE_ALLOCA_H
+#include <alloca.h>
+#endif
+
 #include <otf.h>
 
 /* Format MSG by FMT and print the result to the stderr, and exit.  */
index 9ea49ba..b9488da 100644 (file)
@@ -26,6 +26,11 @@ write to the Free Software Foundation, Inc., 59 Temple Place, Suite
 #include <ft2build.h>
 #include FT_FREETYPE_H
 
+#include "config.h"
+#ifdef HAVE_ALLOCA_H
+#include <alloca.h>
+#endif
+
 #define DEFAULT_PIXEL_SIZE 16
 
 FT_Face face;
index 82c3cfe..d4a9398 100644 (file)
@@ -29,6 +29,9 @@ write to the Free Software Foundation, Inc., 59 Temple Place, Suite
 #include <libgen.h>
 
 #include "config.h"
+#ifdef HAVE_ALLOCA_H
+#include <alloca.h>
+#endif
 
 #ifdef HAVE_X11_XAW_COMMAND_H
 
index 4be5f46..dc924ca 100644 (file)
@@ -28,6 +28,10 @@ write to the Free Software Foundation, Inc., 59 Temple Place, Suite
 extern "C" {
 #endif
 
+#ifdef HAVE_ALLOCA_H
+#include <alloca.h>
+#endif
+
 #define OTF_ERROR(err, arg)    \
   return (otf__error ((err), errfmt, (arg)), errret)