aboutsummaryrefslogtreecommitdiff
path: root/ports/libffi/auto-define-static-macro.patch
diff options
context:
space:
mode:
authordriver1998 <driver1998@foxmail.com>2020-02-08 01:36:39 +0800
committerGitHub <noreply@github.com>2020-02-07 09:36:39 -0800
commit7d4227f02e445b0a29f8c1ce3258b57d60b71cfe (patch)
tree179fcf840bb32edda864d6ec80a5866f56359d3a /ports/libffi/auto-define-static-macro.patch
parent8eaa597bba70728c70feb4674566abcbe6feeb5c (diff)
downloadvcpkg-7d4227f02e445b0a29f8c1ce3258b57d60b71cfe.tar.gz
vcpkg-7d4227f02e445b0a29f8c1ce3258b57d60b71cfe.zip
[libffi] Update to v3.3 release (#6119)
* libffi 3.3-rc0 custom port, with arm/arm64 windows support * fix linux build * enable EFI64 in linux x64, should fix build errors in some cases * libffi: move to the arm64 support pr branch * libffi: move to latest upstream master * libffi: update to upstream master * libffi: update to v3.3-rc2 * libffi: update to v3.3 release * libffi: update version in fficonfig.h * libffi: Remove CMAKE_WINDOWS_EXPORT_ALL_SYMBOLS * [libffi] update portfile.cmake * [libnice] fix Windows ARM64 build * CI: set atk:arm64-windows to fail atk compilation requires running glib(arm64) tools, which is not possible on a x86 system. * CI: libffi:arm64-windows passing * [gdk-pixbuf] fix Windows ARM64 build * [pangomm] show unsupported architecture error on ARM * [pangomm] update portfile.cmake * [libffi] Avoid depending on VCPKG_TARGET_TRIPLET; use native cmake variables instead. Avoid double expansion inside if(). * [libffi] TARGET is a keyword for if() -- use quoted expansion instead. Co-authored-by: Robert Schumacher <roschuma@microsoft.com>
Diffstat (limited to 'ports/libffi/auto-define-static-macro.patch')
-rw-r--r--ports/libffi/auto-define-static-macro.patch14
1 files changed, 0 insertions, 14 deletions
diff --git a/ports/libffi/auto-define-static-macro.patch b/ports/libffi/auto-define-static-macro.patch
deleted file mode 100644
index 468a2fc36..000000000
--- a/ports/libffi/auto-define-static-macro.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff --git a/ffi.h b/ffi.h
-index 8d5eac2..0b0c2f6 100644
---- a/ffi.h
-+++ b/ffi.h
-@@ -174,6 +174,9 @@ typedef struct _ffi_type
- /* of the library, but don't worry about that. Besides, */
- /* as a workaround, they can define FFI_BUILDING if they */
- /* *know* they are going to link with the static library. */
-+
-+#define FFI_BUILDING
-+
- #if defined _MSC_VER && !defined FFI_BUILDING
- #define FFI_EXTERN extern __declspec(dllimport)
- #else