Skip to content

Commit c97d20d

Browse files
committed
Version 0.1.0
1 parent 3422ef7 commit c97d20d

File tree

1 file changed

+21
-3
lines changed

1 file changed

+21
-3
lines changed

configure.ac

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,31 @@
11
# -*- Autoconf -*-
2-
AC_INIT(libreadtags, 0.0.0)
2+
AC_INIT(libreadtags, 0.1.0)
33
AC_CONFIG_MACRO_DIR([m4])
44
AC_CONFIG_SRCDIR([readtags.c])
55

66
AM_INIT_AUTOMAKE
77
AC_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

1230
AC_ARG_ENABLE([gcov],
1331
[AS_HELP_STRING([--enable-gcov],

0 commit comments

Comments
 (0)