mirror of
https://git.freebsd.org/ports.git
synced 2025-05-29 17:36:28 -04:00
the C (and C++) standards mandated for years and compilers started to enforce as of recently (Clang 11, GCC 10). Reported by: pkg-fallout
19 lines
442 B
C
19 lines
442 B
C
--- config.c.orig 2017-10-12 15:19:41 UTC
|
|
+++ config.c
|
|
@@ -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>
|
|
@@ -27,6 +27,8 @@
|
|
|
|
#include "log.h"
|
|
#include "logrotate.h"
|
|
+
|
|
+extern struct logInfoHead logs;
|
|
|
|
#if !defined(GLOB_ABORTED) && defined(GLOB_ABEND)
|
|
#define GLOB_ABORTED GLOB_ABEND
|