Skip to content

Commit 60d16f9

Browse files
[PATCH] Do not encode the library version in the SONAME on Android (from Andreas Enge)
1 parent d271652 commit 60d16f9

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

configure

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -405,6 +405,11 @@ if [ -z "$ARB_LIB" ]; then
405405
ARB_LIBNAME="libarb.dll"
406406
ARB_LIB="libarb-$ARB_MAJOR.dll"
407407
EXTRA_SHARED_FLAGS="-static-libgcc -shared -Wl,--export-all-symbols -Wl,-soname,libarb-$ARB_MAJOR.dll.$ARB_MINOR.$ARB_PATCH";;
408+
android)
409+
ARB_LIBNAME="libarb.so"
410+
ARB_LIB="libarb.so.$ARB_MAJOR.$ARB_MINOR.$ARB_PATCH"
411+
EXTRA_SHARED_FLAGS="-Wl,-soname,libarb.so"
412+
ARB_SOLIB=1;;
408413
*)
409414
ARB_LIBNAME="libarb.so"
410415
ARB_LIB="libarb.so.$ARB_MAJOR.$ARB_MINOR.$ARB_PATCH"

0 commit comments

Comments
 (0)