summaryrefslogtreecommitdiff
path: root/devel/gmake381/files/patch-make.h
diff options
context:
space:
mode:
authorAlexander Leidinger <netchild@FreeBSD.org>2002-10-25 14:31:18 +0000
committerAlexander Leidinger <netchild@FreeBSD.org>2002-10-25 14:31:18 +0000
commit3266ee3cdbf4262db49fdecd344e83843564dd09 (patch)
tree14ce21b2a5cc29f45a8b441e9f9e51277ddc8401 /devel/gmake381/files/patch-make.h
parentThis files doesn't belong into the entire subtree here. (diff)
We already have a prototype for alloca() in stdlib.h, no need to
have it here too. This lets us compile gmake with stricter compilers. Submitted by: marius@alchemy.franken.de
Notes
Notes: svn path=/head/; revision=68807
Diffstat (limited to 'devel/gmake381/files/patch-make.h')
-rw-r--r--devel/gmake381/files/patch-make.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/devel/gmake381/files/patch-make.h b/devel/gmake381/files/patch-make.h
new file mode 100644
index 000000000000..28a63d2eb076
--- /dev/null
+++ b/devel/gmake381/files/patch-make.h
@@ -0,0 +1,12 @@
+--- make.h.orig Wed Sep 11 18:55:44 2002
++++ make.h Mon Oct 21 22:05:11 2002
+@@ -33,7 +33,7 @@
+ # ifdef _AIX
+ #pragma alloca
+ # else
+-# ifndef alloca /* predefined by HP cc +Olibcalls */
++# if !defined (alloca) && !defined (__FreeBSD__) /* predefined by HP cc +Olibcalls, part of stdlib.h on FreeBSD */
+ char *alloca ();
+ # endif
+ # endif
+