summaryrefslogtreecommitdiffstats
path: root/package/nodejs/0001-check-if-uclibc-has-backtrace-support.patch
diff options
context:
space:
mode:
authorMartin Bark <martin@barkynet.com>2017-03-14 12:06:18 +0000
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>2017-03-14 22:06:33 +0100
commit30e562d0e0c8837241283302c23905a3b4ef4672 (patch)
treef13e0f1b16f1285c12b3230d33c3e1e2e80f5206 /package/nodejs/0001-check-if-uclibc-has-backtrace-support.patch
parentdfb3cf2ef4fc1dfb16adc92f019df90928755f08 (diff)
downloadbuildroot-30e562d0e0c8837241283302c23905a3b4ef4672.tar.gz
buildroot-30e562d0e0c8837241283302c23905a3b4ef4672.zip
package/nodejs: bump version to 7.7.2
See https://nodejs.org/en/blog/release/v7.7.2/ Signed-off-by: Martin Bark <martin@barkynet.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'package/nodejs/0001-check-if-uclibc-has-backtrace-support.patch')
-rw-r--r--package/nodejs/0001-check-if-uclibc-has-backtrace-support.patch26
1 files changed, 26 insertions, 0 deletions
diff --git a/package/nodejs/0001-check-if-uclibc-has-backtrace-support.patch b/package/nodejs/0001-check-if-uclibc-has-backtrace-support.patch
new file mode 100644
index 0000000000..079bbb4366
--- /dev/null
+++ b/package/nodejs/0001-check-if-uclibc-has-backtrace-support.patch
@@ -0,0 +1,26 @@
+From 7c69553d7275bbcaa88fada8ccd0d2d9f787e1ad Mon Sep 17 00:00:00 2001
+From: Martin Bark <martin@barkynet.com>
+Date: Sat, 4 Mar 2017 20:41:40 +0000
+Subject: [PATCH] check if uclibc has backtrace support
+
+Signed-off-by: Martin Bark <martin@barkynet.com>
+---
+ deps/v8/src/base/debug/stack_trace_posix.cc | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/deps/v8/src/base/debug/stack_trace_posix.cc b/deps/v8/src/base/debug/stack_trace_posix.cc
+index 87c0a73..d2c182a 100644
+--- a/deps/v8/src/base/debug/stack_trace_posix.cc
++++ b/deps/v8/src/base/debug/stack_trace_posix.cc
+@@ -25,7 +25,7 @@
+ #include <string>
+ #include <vector>
+
+-#if V8_LIBC_GLIBC || V8_LIBC_BSD || V8_LIBC_UCLIBC || V8_OS_SOLARIS
++#if V8_LIBC_GLIBC || V8_LIBC_BSD || ( V8_LIBC_UCLIBC && __UCLIBC_HAS_BACKTRACE__ ) || V8_OS_SOLARIS
+ #define HAVE_EXECINFO_H 1
+ #endif
+
+--
+2.7.4
+
OpenPOWER on IntegriCloud