From 3f8d0897a130eca0977a95a0d914361e833837c2 Mon Sep 17 00:00:00 2001 From: Michael Gehring Date: Sat, 9 Apr 2016 12:38:32 +0200 Subject: [PATCH] webkit2gtk: fix musl build (Alpine patch) --- srcpkgs/webkit2gtk/patches/musl-fixes.patch | 40 +++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 srcpkgs/webkit2gtk/patches/musl-fixes.patch diff --git a/srcpkgs/webkit2gtk/patches/musl-fixes.patch b/srcpkgs/webkit2gtk/patches/musl-fixes.patch new file mode 100644 index 00000000000..13d5db28a0a --- /dev/null +++ b/srcpkgs/webkit2gtk/patches/musl-fixes.patch @@ -0,0 +1,40 @@ +diff --git a/Source/JavaScriptCore/heap/MachineStackMarker.cpp b/Source/JavaScriptCore/heap/MachineStackMarker.cpp +index 1df2874..de8beb2 100644 +--- Source/JavaScriptCore/heap/MachineStackMarker.cpp ++++ Source/JavaScriptCore/heap/MachineStackMarker.cpp +@@ -546,7 +546,7 @@ void* MachineThreads::Thread::Registers::stackPointer() const + + #elif USE(PTHREADS) + +-#if defined(__GLIBC__) && ENABLE(JIT) ++#if defined(__linux__) && ENABLE(JIT) + + #if CPU(X86) + return reinterpret_cast((uintptr_t) regs.machineContext.gregs[REG_ESP]); +@@ -645,7 +645,7 @@ void* MachineThreads::Thread::Registers::framePointer() const + #error Unknown Architecture + #endif + +-#elif defined(__GLIBC__) ++#elif defined(__linux__) // glibc and musl + + // The following sequence depends on glibc's sys/ucontext.h. + #if CPU(X86) +@@ -727,7 +727,7 @@ void* MachineThreads::Thread::Registers::instructionPointer() const + #error Unknown Architecture + #endif + +-#elif defined(__GLIBC__) ++#elif defined(__linux__) // glibc and musl + + // The following sequence depends on glibc's sys/ucontext.h. + #if CPU(X86) +@@ -818,7 +818,7 @@ void* MachineThreads::Thread::Registers::llintPC() const + #error Unknown Architecture + #endif + +-#elif defined(__GLIBC__) ++#elif defined(__linux__) // glibc and musl + + // The following sequence depends on glibc's sys/ucontext.h. + #if CPU(X86)