File tree Expand file tree Collapse file tree 1 file changed +21
-3
lines changed Expand file tree Collapse file tree 1 file changed +21
-3
lines changed Original file line number Diff line number Diff line change 1
1
# -*- Autoconf -*-
2
- AC_INIT ( libreadtags , 0.0 .0 )
2
+ AC_INIT ( libreadtags , 0.1 .0 )
3
3
AC_CONFIG_MACRO_DIR ( [ m4] )
4
4
AC_CONFIG_SRCDIR ( [ readtags.c] )
5
5
6
6
AM_INIT_AUTOMAKE
7
7
AC_PROG_LIBTOOL
8
8
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] )
11
29
12
30
AC_ARG_ENABLE ( [ gcov] ,
13
31
[ AS_HELP_STRING ( [ --enable-gcov] ,
You can’t perform that action at this time.
0 commit comments