diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-03-05 18:25:20 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2016-03-05 18:25:20 +0000 |
commit | fa2a986810042bf580a512bd30a7aa95845b865a (patch) | |
tree | adaaa296dd531a5f3a728dea562dddd1c17e7cde /libffi | |
parent | c39f83be3d4f855081808c49e9b8af442fed3880 (diff) | |
download | gcc-fa2a986810042bf580a512bd30a7aa95845b865a.tar.gz |
libffi: Match upstream soname
* libtool-version: Increase to 7:0:0.
* libffi.map.in: Increase version numbers to 7.0.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@234009 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libffi')
-rw-r--r-- | libffi/ChangeLog | 5 | ||||
-rw-r--r-- | libffi/libffi.map.in | 14 | ||||
-rw-r--r-- | libffi/libtool-version | 2 |
3 files changed, 13 insertions, 8 deletions
diff --git a/libffi/ChangeLog b/libffi/ChangeLog index b25ef5b8d8b..d6a0b51a275 100644 --- a/libffi/ChangeLog +++ b/libffi/ChangeLog @@ -1,3 +1,8 @@ +2016-03-02 Richard Henderson <rth@redhat.com> + + * libtool-version: Increase to 7:0:0. + * libffi.map.in: Increase version numbers to 7.0. + 2016-03-03 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> * Makefile.am (libffi.map-sun): Properly convert diff --git a/libffi/libffi.map.in b/libffi/libffi.map.in index ca509671a80..8bd27ef693a 100644 --- a/libffi/libffi.map.in +++ b/libffi/libffi.map.in @@ -3,7 +3,7 @@ #include <fficonfig.h> #include <ffitarget.h> -LIBFFI_BASE_5 { +LIBFFI_BASE_7.0 { global: /* Exported data variables. */ ffi_type_void; @@ -46,17 +46,17 @@ LIBFFI_BASE_5 { }; #ifdef FFI_TARGET_HAS_COMPLEX_TYPE -LIBFFI_COMPLEX_5 { +LIBFFI_COMPLEX_7.0 { global: /* Exported data variables. */ ffi_type_complex_float; ffi_type_complex_double; ffi_type_complex_longdouble; -} LIBFFI_BASE_5; +} LIBFFI_BASE_7.0; #endif #if FFI_CLOSURES -LIBFFI_CLOSURE_5 { +LIBFFI_CLOSURE_7.0 { global: ffi_closure_alloc; ffi_closure_free; @@ -66,13 +66,13 @@ LIBFFI_CLOSURE_5 { ffi_prep_raw_closure_loc; ffi_prep_java_raw_closure; ffi_prep_java_raw_closure_loc; -} LIBFFI_BASE_5; +} LIBFFI_BASE_7.0; #endif #if FFI_GO_CLOSURES -LIBFFI_GO_CLOSURE_5 { +LIBFFI_GO_CLOSURE_7.0 { global: ffi_call_go; ffi_prep_go_closure; -} LIBFFI_CLOSURE_5; +} LIBFFI_CLOSURE_7.0; #endif diff --git a/libffi/libtool-version b/libffi/libtool-version index 0a841ca23be..dfb8b111d0b 100644 --- a/libffi/libtool-version +++ b/libffi/libtool-version @@ -3,4 +3,4 @@ # a separate file so that version updates don't involve re-running # automake. # CURRENT:REVISION:AGE -5:0:0 +7:0:0 |