hardware/intel/libva
Révision | cd115fe21c3493f831dcb653c62d38e577bb6943 (tree) |
---|---|
l'heure | 2009-08-14 23:30:02 |
Auteur | Austin Yuan <shengquan.yuan@inte...> |
Commiter | Austin Yuan |
Don't include VAAPI version to SONAME
VAAPI version upgrade doesn't mean it will break binary compatibility
Signed-off-by: Austin Yuan <shengquan.yuan@intel.com>
@@ -32,9 +32,9 @@ m4_define([libva_version], | ||
32 | 32 | m4_define([libva_sds_version], [2]) |
33 | 33 | |
34 | 34 | # if the library source code has changed, increment revision |
35 | -m4_define([libva_lt_revision], [0]) | |
35 | +m4_define([libva_lt_revision], [1]) | |
36 | 36 | # if any interface was added/removed/changed, then inc current, reset revision |
37 | -m4_define([libva_lt_current], [1]) | |
37 | +m4_define([libva_lt_current], [0]) | |
38 | 38 | # if any interface was added since last public release, then increment age |
39 | 39 | # if any interface was removed since last public release, then set age to 0 |
40 | 40 | m4_define([libva_lt_age], [0]) |
@@ -62,7 +62,7 @@ LIBVA_LT_CURRENT=libva_lt_current | ||
62 | 62 | LIBVA_LT_REV=libva_lt_revision |
63 | 63 | LIBVA_LT_AGE=libva_lt_age |
64 | 64 | LIBVA_LT_VERSION="$LIBVA_LT_CURRENT:$LIBVA_LT_REV:$LIBVA_LT_AGE" |
65 | -LIBVA_LT_LDFLAGS="-version-info $LIBVA_LT_VERSION -release $LIBVA_VERSION.$LIBVA_SDS_VERSION" | |
65 | +LIBVA_LT_LDFLAGS="-version-info $LIBVA_LT_VERSION" | |
66 | 66 | AC_SUBST(LIBVA_LT_VERSION) |
67 | 67 | AC_SUBST(LIBVA_LT_LDFLAGS) |
68 | 68 |