File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# -*- Autoconf -*-
2- AC_INIT ( libreadtags , 0.0 .0 )
2+ AC_INIT ( libreadtags , 0.1 .0 )
33AC_CONFIG_MACRO_DIR ( [ m4] )
44AC_CONFIG_SRCDIR ( [ readtags.c] )
55
66AM_INIT_AUTOMAKE
77AC_PROG_LIBTOOL
88
9- # libtool -version-info
10- AC_SUBST ( LT_VERSION , [ 0:0:0] )
9+ # LT_VERSION => CURRENT[:REVISION[:AGE]]
10+ #
11+ # (the following instructions are taken from configure.ac in libskk)
12+ #
13+ # If library source has changed since last release, increment revision
14+ # If public symbols have been added, removed or changed since last release,
15+ # increment current and set revision to 0
16+ # If public symbols have been added since last release, increment age
17+ # If public symbols have been removed since last release, set age to 0
18+ #
19+ # Revision history
20+ #
21+ # 0:0:0
22+ # initial version; API is the same as readtags.h in Exuberant-ctags.
23+ #
24+ # 1:0:0
25+ # introduced tagsGetErrno() and tagErrno.
26+ # rename sortType to tagSortType.
27+
28+ AC_SUBST ( LT_VERSION , [ 1:0:0] )
1129
1230AC_ARG_ENABLE ( [ gcov] ,
1331 [ AS_HELP_STRING ( [ --enable-gcov] ,
You can’t perform that action at this time.
0 commit comments