mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-08-04 10:18:09 -04:00
18 lines
381 B
C++
18 lines
381 B
C++
$NetBSD: patch-deps_v8_src_log-utils.h,v 1.1 2015/11/09 20:19:35 fhajny Exp $
|
|
|
|
Need stdarg.h for va_list.
|
|
|
|
--- deps/v8/src/log-utils.h.orig 2015-10-29 12:22:04.000000000 +0000
|
|
+++ deps/v8/src/log-utils.h
|
|
@@ -9,6 +9,10 @@
|
|
#include "src/base/platform/mutex.h"
|
|
#include "src/flags.h"
|
|
|
|
+#if defined(__NetBSD__)
|
|
+#include <stdarg.h>
|
|
+#endif
|
|
+
|
|
namespace v8 {
|
|
namespace internal {
|
|
|