diff options
author | 2014-05-30 11:08:56 +0000 | |
---|---|---|
committer | 2014-05-30 11:08:56 +0000 | |
commit | bc958256f2e9269c490be19f7970f95805be5af1 (patch) | |
tree | fabd5976051abaebc026d9b976e3951c5ea6970f /dev-libs/libffi/files | |
parent | add py3 support (diff) | |
download | gentoo-2-bc958256f2e9269c490be19f7970f95805be5af1.tar.gz gentoo-2-bc958256f2e9269c490be19f7970f95805be5af1.tar.bz2 gentoo-2-bc958256f2e9269c490be19f7970f95805be5af1.zip |
Fix typing error in ffi.h.in (missing @@) wrt #511752 by Ryan Hill and Patrick Lauer
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 4868F14D)
Diffstat (limited to 'dev-libs/libffi/files')
-rw-r--r-- | dev-libs/libffi/files/libffi-3.1-execstack.patch | 1 | ||||
-rw-r--r-- | dev-libs/libffi/files/libffi-3.1-typing_error.patch | 14 |
2 files changed, 15 insertions, 0 deletions
diff --git a/dev-libs/libffi/files/libffi-3.1-execstack.patch b/dev-libs/libffi/files/libffi-3.1-execstack.patch index 3a98d94aa595..6884a47012d5 100644 --- a/dev-libs/libffi/files/libffi-3.1-execstack.patch +++ b/dev-libs/libffi/files/libffi-3.1-execstack.patch @@ -1,4 +1,5 @@ http://bugs.gentoo.org/511634 +http://sourceware.org/ml/libffi-discuss/2014/msg00058.html --- src/x86/win32.S +++ src/x86/win32.S diff --git a/dev-libs/libffi/files/libffi-3.1-typing_error.patch b/dev-libs/libffi/files/libffi-3.1-typing_error.patch new file mode 100644 index 000000000000..fc24006d5d32 --- /dev/null +++ b/dev-libs/libffi/files/libffi-3.1-typing_error.patch @@ -0,0 +1,14 @@ +http://bugs.gentoo.org/511752 +http://sourceware.org/ml/libffi-discuss/2014/msg00059.html + +--- include/ffi.h.in ++++ include/ffi.h.in +@@ -221,7 +221,7 @@ typedef struct { + #endif + } ffi_cif; + +-#if HAVE_LONG_DOUBLE_VARIANT ++#if @HAVE_LONG_DOUBLE_VARIANT@ + /* Used to adjust size/alignment of ffi types. */ + void ffi_prep_types (ffi_abi abi); + # endif |