aboutsummaryrefslogtreecommitdiffstats
path: root/testing/nodejs/nodejs-uclibc.patch
diff options
context:
space:
mode:
authorBartłomiej Piotrowski <bpiotrowski@alpinelinux.org>2013-07-20 15:56:32 +0200
committerBartłomiej Piotrowski <bpiotrowski@alpinelinux.org>2013-07-20 15:56:54 +0200
commit0fb7f1304c26bdde70f2bf695da82370520229b8 (patch)
treecf37f3f5622a9f2d2b14a2e383c9c824e8224d29 /testing/nodejs/nodejs-uclibc.patch
parent93bf62e560b1e71d21791da0108cfbf8bea7236b (diff)
downloadaports-0fb7f1304c26bdde70f2bf695da82370520229b8.tar.bz2
aports-0fb7f1304c26bdde70f2bf695da82370520229b8.tar.xz
testing/nodejs: upgrade to 0.10.13
Diffstat (limited to 'testing/nodejs/nodejs-uclibc.patch')
-rw-r--r--testing/nodejs/nodejs-uclibc.patch20
1 files changed, 0 insertions, 20 deletions
diff --git a/testing/nodejs/nodejs-uclibc.patch b/testing/nodejs/nodejs-uclibc.patch
deleted file mode 100644
index 68fadff06..000000000
--- a/testing/nodejs/nodejs-uclibc.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- node-v0.4.2.orig/deps/v8/src/platform-linux.cc
-+++ node-v0.4.2/deps/v8/src/platform-linux.cc
-@@ -46,7 +46,7 @@
- #include <sys/stat.h> // open
- #include <fcntl.h> // open
- #include <unistd.h> // sysconf
--#ifdef __GLIBC__
-+#if defined(__GLIBC__) && !defined(__UCLIBC__)
- #include <execinfo.h> // backtrace, backtrace_symbols
- #endif // def __GLIBC__
- #include <strings.h> // index
-@@ -447,7 +447,7 @@
-
- int OS::StackWalk(Vector<OS::StackFrame> frames) {
- // backtrace is a glibc extension.
--#ifdef __GLIBC__
-+#if defined(__GLIBC__) && !defined(__UCLIBC__)
- int frames_size = frames.length();
- ScopedVector<void*> addresses(frames_size);
-