#!/bin/sh # Making releases: # 1. Increment XINE_VERSION_SUB # 2. Remove .cvsversion before running make dist # 3. Adjust the values of XINE_LT_CURRENT, XINE_LT_REVISION, and XINE_LT_AGE # according to the following rules: # # 1. Increment XINE_LT_REVISION. # 2. If any interfaces have been added, removed, or changed, set # XINE_LT_REVISION to 0 and increment XINE_LT_CURRENT. # 3. If any interfaces have been added, increment XINE_LT_AGE. # 4. If any interfaces have been removed or incompatibly changed, # set XINE_LT_AGE to 0, and rename po/libxine*.pot accordingly # (use "hg rename"). # # The most important thing to keep in mind is that the libtool version # numbers DO NOT MATCH the xine-lib version numbers, and you should NEVER # try to make them match. # # See the libtool documentation for more information. # # XINE_LT_CURRENT the current API version # XINE_LT_REVISION the current revision of the current API # XINE_LT_AGE the number of previous API versions still supported XINE_VERSION_MAJOR=1 XINE_VERSION_MINOR=1 XINE_VERSION_SUB=90 XINE_LT_CURRENT=2 XINE_LT_REVISION=0 XINE_LT_AGE=0 test -f "`dirname $0`/.cvsversion" && XINE_VERSION_SUFFIX="hg" XINE_VERSION_SPEC="${XINE_VERSION_MAJOR}.${XINE_VERSION_MINOR}.${XINE_VERSION_SUB}${XINE_VERSION_SUFFIX}" #### #### You should not need to touch anything beyond this point #### echo "m4_define([XINE_VERSION_MAJOR], [${XINE_VERSION_MAJOR}])dnl" echo "m4_define([XINE_VERSION_MINOR], [${XINE_VERSION_MINOR}])dnl" echo "m4_define([XINE_VERSION_SUB], [${XINE_VERSION_SUB}])dnl" echo "m4_define([XINE_VERSION_SUFFIX], [${XINE_VERSION_SUFFIX}])dnl" echo "m4_define([XINE_VERSION_SPEC], [${XINE_VERSION_SPEC}])dnl" echo "m4_define([__XINE_LT_CURRENT], [${XINE_LT_CURRENT}])dnl" echo "m4_define([__XINE_LT_REVISION], [${XINE_LT_REVISION}])dnl" echo "m4_define([__XINE_LT_AGE], [${XINE_LT_AGE}])dnl"