forked from Lainports/opnsense-ports
Taken from: https://github.com/freebsd/freebsd-ports.git Commit id: 5070672073b68be364139bc6b3a89100bd17d331
14 lines
379 B
C++
14 lines
379 B
C++
This patch is needed in order to make the port build with a gcc newer than the one in base.
|
|
|
|
FILE* is used in preprocessor.cpp, so a suitable declaration is needed.
|
|
|
|
--- generator/parser/rpp/preprocessor.cpp
|
|
+++ generator/parser/rpp/preprocessor.cpp
|
|
@@ -41,6 +41,7 @@
|
|
|
|
#include "preprocessor.h"
|
|
|
|
+#include <cstdio>
|
|
#include <string>
|
|
|
|
// register callback for include hooks
|