mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 22:30:38 -04:00
PR: 223017 Submitted by: js@iksz.hu (maintainer) Approved by: olivier (mentor) Differential Revision: https://reviews.freebsd.org/D12687
10 lines
307 B
C
10 lines
307 B
C
--- config.c.orig 2017-10-12 15:19:41.000000000 +0000
|
|
+++ config.c 2017-10-14 21:59:41.716559000 +0000
|
|
@@ -1,6 +1,6 @@
|
|
#include "queue.h"
|
|
/* Alloca is defined in stdlib.h in NetBSD */
|
|
-#ifndef __NetBSD__
|
|
+#if !defined(__FreeBSD__) && !defined(__NetBSD__)
|
|
#include <alloca.h>
|
|
#endif
|
|
#include <limits.h>
|