summaryrefslogtreecommitdiff
path: root/math/fxt/files/patch-src_fxtalloca.h
diff options
context:
space:
mode:
Diffstat (limited to 'math/fxt/files/patch-src_fxtalloca.h')
-rw-r--r--math/fxt/files/patch-src_fxtalloca.h18
1 files changed, 18 insertions, 0 deletions
diff --git a/math/fxt/files/patch-src_fxtalloca.h b/math/fxt/files/patch-src_fxtalloca.h
new file mode 100644
index 000000000000..7b7ec5f31996
--- /dev/null
+++ b/math/fxt/files/patch-src_fxtalloca.h
@@ -0,0 +1,18 @@
+--- src/fxtalloca.h.orig 2012-11-21 18:05:08 UTC
++++ src/fxtalloca.h
+@@ -16,13 +16,13 @@
+ #if defined __GNUC__ // GNU compiler
+ #define ALLOCA(Type, v, n) Type v[n]
+ #else // __GNUC__
+-#include <alloca.h>
++#include <stdlib.h>
+ #define ALLOCA(Type, v, n) Type *v = (Type *)alloca((n)*sizeof(Type))
+ #endif // __GNUC__
+
+ #ifdef FORCE_ALLOCA_H
+ #undef ALLOCA
+-#include <alloca.h>
++#include <stdlib.h>
+ //#include <stdlib.h> // for BSD
+ #define ALLOCA(Type, v, n) Type *v = (Type *)alloca((n)*sizeof(Type))
+ #endif