View | Details | Raw Unified | Return to bug 15814
Collapse All | Expand All

(-)libquicktime-1.0.2.orig/configure.ac (+13 lines)
Lines 7-12 Link Here
7
LQT_VERSION_MINOR=`echo $VERSION | cut -d . -f 2`
7
LQT_VERSION_MINOR=`echo $VERSION | cut -d . -f 2`
8
LQT_VERSION_MICRO=`echo $VERSION | cut -d . -f 3 | cut -d p -f 1`
8
LQT_VERSION_MICRO=`echo $VERSION | cut -d . -f 3 | cut -d p -f 1`
9
9
10
# If the source code has changed at all, increment LIBQUICKTIME_REVISION
11
# If any interfaces have been added, removed, or changed, increment LIBQUICKTIME_CURRENT, and set LIBQUICKTIME_REVISION to 0.
12
# If any interfaces have been added since the last public release, then increment LIBQUICKTIME_AGE.
13
# If any interfaces have been removed since the last public release, then set LIBQUICKTIME_AGE to 0.
14
# Reference: http://www.gnu.org/software/libtool/manual.html#Versioning
15
# Quick hack is implemented here! Please replace this with correct values for libquicktime.
16
LIBQUICKTIME_REVISION=0
17
LIBQUICKTIME_CURRENT=102
18
LIBQUICKTIME_AGE=0
19
AC_SUBST(LIBQUICKTIME_REVISION)
20
AC_SUBST(LIBQUICKTIME_CURRENT)
21
AC_SUBST(LIBQUICKTIME_AGE)
22
10
USER_CFLAGS=$CFLAGS
23
USER_CFLAGS=$CFLAGS
11
24
12
AM_CONFIG_HEADER(config.h)
25
AM_CONFIG_HEADER(config.h)
(-)libquicktime-1.0.2.orig/src/Makefile.am (-1 / +1 lines)
Lines 9-15 Link Here
9
#
9
#
10
libquicktime_la_LIBADD = @ICONV_LIBS@ @LTLIBINTL@
10
libquicktime_la_LIBADD = @ICONV_LIBS@ @LTLIBINTL@
11
11
12
libquicktime_la_LDFLAGS = -export-dynamic
12
libquicktime_la_LDFLAGS = -export-dynamic -version-info $(LIBQUICKTIME_CURRENT):$(LIBQUICKTIME_REVISION):$(LIBQUICKTIME_AGE)
13
13
14
# build only the files, which can be compiled
14
# build only the files, which can be compiled
15
15

Return to bug 15814