mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-10 13:03:41 -04:00
16 lines
461 B
Plaintext
16 lines
461 B
Plaintext
$NetBSD: patch-aa,v 1.9 2012/07/30 03:59:06 dholland Exp $
|
|
|
|
- Use stdlib.h for alloca.
|
|
|
|
--- config.h.in.orig 2006-12-09 11:54:06.000000000 +0000
|
|
+++ config.h.in 2006-12-12 08:44:04.000000000 +0000
|
|
@@ -432,6 +432,8 @@
|
|
#else
|
|
# ifdef _AIX
|
|
#pragma alloca
|
|
+# elif defined(__DragonFly__) || defined(__FreeBSD__) || defined(__NetBSD__)
|
|
+# include <stdlib.h>
|
|
# else
|
|
# ifndef alloca /* predefined by HP cc +Olibcalls */
|
|
char *alloca ();
|