buildroot/package/nodejs/0002-add-missing-stdarg-includes.patch
Martin Bark f17738fde2 package/nodejs: bump version to 8.0.0
See https://nodejs.org/en/blog/release/v8.0.0/

Signed-off-by: Martin Bark <martin@barkynet.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2017-06-05 10:14:44 +02:00

35 lines
954 B
Diff
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

From fa4d8468907aa41cb08964e82eb3c7d82a7270bf Mon Sep 17 00:00:00 2001
From: Martin Bark <martin@barkynet.com>
Date: Sun, 4 Jun 2017 23:11:54 +0100
Subject: [PATCH] add missing stdarg includes
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Fixes error when using uclibc
../deps/v8/src/wasm/wasm-result.h:118:70: error: va_list has not been declared
This has been fixed upstream in v8, see
https://codereview.chromium.org/2780913002
Signed-off-by: Martin Bark <martin@barkynet.com>
---
deps/v8/src/wasm/wasm-result.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/deps/v8/src/wasm/wasm-result.h b/deps/v8/src/wasm/wasm-result.h
index 004ac22..eac307c 100644
--- a/deps/v8/src/wasm/wasm-result.h
+++ b/deps/v8/src/wasm/wasm-result.h
@@ -5,6 +5,7 @@
#ifndef V8_WASM_RESULT_H_
#define V8_WASM_RESULT_H_
+#include <cstdarg>
#include <memory>
#include "src/base/compiler-specific.h"
--
2.7.4