diff options
author | wiz <wiz> | 2014-11-20 16:10:37 +0000 |
---|---|---|
committer | wiz <wiz> | 2014-11-20 16:10:37 +0000 |
commit | 3fb3ee93ea3e3311673453a87d697ec801c651d8 (patch) | |
tree | 999dcad4eac38a68de3d8f073c3b6812eedf7f60 /devel | |
parent | e29a445828524c92a720749e92568f0a7ad30384 (diff) | |
download | pkgsrc-3fb3ee93ea3e3311673453a87d697ec801c651d8.tar.gz |
Remove Cygwin patches (were integrated in 3.2)
Diffstat (limited to 'devel')
-rw-r--r-- | devel/libffi/patches/patch-src_x86_ffi.c | 15 | ||||
-rw-r--r-- | devel/libffi/patches/patch-src_x86_win64.S | 15 |
2 files changed, 0 insertions, 30 deletions
diff --git a/devel/libffi/patches/patch-src_x86_ffi.c b/devel/libffi/patches/patch-src_x86_ffi.c deleted file mode 100644 index eee8bedfc57..00000000000 --- a/devel/libffi/patches/patch-src_x86_ffi.c +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-src_x86_ffi.c,v 1.1 2013/07/26 13:12:25 ryoon Exp $ - -Fix build on Cygwin64. From Cygwin64 1.7.22's 3.0.12-cygwin.patch. - ---- src/x86/ffi.c.orig 2013-03-16 11:25:04.000000000 +0000 -+++ src/x86/ffi.c -@@ -28,7 +28,7 @@ - DEALINGS IN THE SOFTWARE. - ----------------------------------------------------------------------- */ - --#if !defined(__x86_64__) || defined(_WIN64) -+#if !defined(__x86_64__) || defined(_WIN64) || defined(__CYGWIN__) - - #ifdef _WIN64 - #include <windows.h> diff --git a/devel/libffi/patches/patch-src_x86_win64.S b/devel/libffi/patches/patch-src_x86_win64.S deleted file mode 100644 index c37faa9ce34..00000000000 --- a/devel/libffi/patches/patch-src_x86_win64.S +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-src_x86_win64.S,v 1.1 2013/07/26 13:12:25 ryoon Exp $ - -Fix build on Cygwin64. From Cygwin64 1.7.22's 3.0.12-cygwin.patch. - ---- src/x86/win64.S.orig 2013-03-16 11:19:39.000000000 +0000 -+++ src/x86/win64.S -@@ -295,7 +295,7 @@ SYMBOL_NAME(ffi_closure_win64): - mov %rax, %rcx # context is first parameter - mov %rsp, %rdx # stack is second parameter - add $48, %rdx # point to start of arguments -- mov $SYMBOL_NAME(ffi_closure_win64_inner), %rax -+ lea SYMBOL_NAME(ffi_closure_win64_inner)(%rip), %rax - callq *%rax # call the real closure function - add $40, %rsp - movq %rax, %xmm0 # If the closure returned a float, |