blob: 1aa9fd4b10fe41fc821ab00f29ec90a145d5e4ab (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# -*-shell-script-*-
# Note: `GUILE_VERSION' is defined in `configure.ac' using `git-version-gen'.
GUILE_MAJOR_VERSION=2
GUILE_MINOR_VERSION=0
GUILE_MICRO_VERSION=3
GUILE_EFFECTIVE_VERSION=2.0
# All of the shared lib versioning info. Right now, for this to work
# properly, you'll also need to add AC_SUBST calls to the right place
# in configure.in, add the right -version-info statement to your
# Makefile.am The only library not handled here is
# guile-readline/libguile-readline. It is handled in
# ./guile-readline/LIBGUILEREADLINE-VERSION.
# See libtool info pages for more information on how and when to
# change these.
LIBGUILE_INTERFACE_CURRENT=25
LIBGUILE_INTERFACE_REVISION=0
LIBGUILE_INTERFACE_AGE=3
LIBGUILE_INTERFACE="${LIBGUILE_INTERFACE_CURRENT}:${LIBGUILE_INTERFACE_REVISION}:${LIBGUILE_INTERFACE_AGE}"
|