Message ID | 1480019090-13539-4-git-send-email-maxim.uvarov@linaro.org |
---|---|
State | Superseded |
Headers | show |
On 2016-11-24 23:24, Maxim Uvarov wrote: > Default is abi compat mode, all interface functions changed, > so increase first number of .so > > Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org> > --- > configure.ac | 6 +++--- > 1 file changed, 3 insertions(+), 3 deletions(-) > > diff --git a/configure.ac b/configure.ac > index b460a65..e7b8f8a 100644 > --- a/configure.ac > +++ b/configure.ac > @@ -3,7 +3,7 @@ AC_PREREQ([2.5]) > # Set correct API version > ########################################################################## > m4_define([odpapi_generation_version], [1]) > -m4_define([odpapi_major_version], [11]) > +m4_define([odpapi_major_version], [12]) > m4_define([odpapi_minor_version], [0]) > m4_define([odpapi_point_version], [0]) > m4_define([odpapi_version], > @@ -30,10 +30,10 @@ AM_SILENT_RULES([yes]) > ########################################################################## > # Set correct platform library version > ########################################################################## > -ODP_LIBSO_VERSION=111:0:0 > +ODP_LIBSO_VERSION=112:0:0 > AC_SUBST(ODP_LIBSO_VERSION) > > -ODPHELPER_LIBSO_VERSION=110:0:1 > +ODPHELPER_LIBSO_VERSION=112:0:0 Unless libodphelper is exposing specific things about libodp, then no. Is that the case? Cheers, Anders
On 11/29/16 17:14, Anders Roxell wrote: > On 2016-11-24 23:24, Maxim Uvarov wrote: >> Default is abi compat mode, all interface functions changed, >> so increase first number of .so >> >> Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org> >> --- >> configure.ac | 6 +++--- >> 1 file changed, 3 insertions(+), 3 deletions(-) >> >> diff --git a/configure.ac b/configure.ac >> index b460a65..e7b8f8a 100644 >> --- a/configure.ac >> +++ b/configure.ac >> @@ -3,7 +3,7 @@ AC_PREREQ([2.5]) >> # Set correct API version >> ########################################################################## >> m4_define([odpapi_generation_version], [1]) >> -m4_define([odpapi_major_version], [11]) >> +m4_define([odpapi_major_version], [12]) >> m4_define([odpapi_minor_version], [0]) >> m4_define([odpapi_point_version], [0]) >> m4_define([odpapi_version], >> @@ -30,10 +30,10 @@ AM_SILENT_RULES([yes]) >> ########################################################################## >> # Set correct platform library version >> ########################################################################## >> -ODP_LIBSO_VERSION=111:0:0 >> +ODP_LIBSO_VERSION=112:0:0 >> AC_SUBST(ODP_LIBSO_VERSION) >> >> -ODPHELPER_LIBSO_VERSION=110:0:1 >> +ODPHELPER_LIBSO_VERSION=112:0:0 > Unless libodphelper is exposing specific things about libodp, then no. > Is that the case? > > Cheers, > Anders libodphelper also uses odp inline types. After changing default build to abi compat we also change interface. So the same reason as for libodp. Maxim.
diff --git a/configure.ac b/configure.ac index b460a65..e7b8f8a 100644 --- a/configure.ac +++ b/configure.ac @@ -3,7 +3,7 @@ AC_PREREQ([2.5]) # Set correct API version ########################################################################## m4_define([odpapi_generation_version], [1]) -m4_define([odpapi_major_version], [11]) +m4_define([odpapi_major_version], [12]) m4_define([odpapi_minor_version], [0]) m4_define([odpapi_point_version], [0]) m4_define([odpapi_version], @@ -30,10 +30,10 @@ AM_SILENT_RULES([yes]) ########################################################################## # Set correct platform library version ########################################################################## -ODP_LIBSO_VERSION=111:0:0 +ODP_LIBSO_VERSION=112:0:0 AC_SUBST(ODP_LIBSO_VERSION) -ODPHELPER_LIBSO_VERSION=110:0:1 +ODPHELPER_LIBSO_VERSION=112:0:0 AC_SUBST(ODPHELPER_LIBSO_VERSION) # Checks for programs.
Default is abi compat mode, all interface functions changed, so increase first number of .so Signed-off-by: Maxim Uvarov <maxim.uvarov@linaro.org> --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) -- 2.7.1.250.gff4ea60