commit e3a0ade75b6bb96c21883e91693ac47eb10694e6 Author: Marcel Mol Date: Sun Feb 23 12:03:50 2014 +0100 Fix .so version order libtool defines version info as current:revision:age configure.ac used current:age:revision diff --git a/configure.ac b/configure.ac index 7052f52..fd2ce0f 100644 --- a/configure.ac +++ b/configure.ac @@ -37,13 +37,13 @@ dnl * DVDREAD_LT_AGE is the number of previous API versions still supported by dnl * libtool has its own numbering scheme, because local library numbering schemes dnl are platform dependent dnl * in Linux, the library will be named -dnl libname.so.(DVDREAD_LT_CURRENT - DVDREAD_LT_AGE).DVDREAD_LT_AGE.DVDREAD_LT_REVISION +dnl libname.so.(DVDREAD_LT_CURRENT - DVDREAD_LT_AGE).DVDREAD_LT_REVISION.DVDREAD_LT_AGE DVDREAD_LT_CURRENT=5 DVDREAD_LT_AGE=1 DVDREAD_LT_REVISION=2 -AC_SUBST([DVDREAD_LTVERSION], [$DVDREAD_LT_CURRENT:$DVDREAD_LT_AGE:$DVDREAD_LT_REVISION]) +AC_SUBST([DVDREAD_LTVERSION], [$DVDREAD_LT_CURRENT:$DVDREAD_LT_REVISION:$DVDREAD_LT_AGE]) AC_PROG_CC