30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# like dots in # library names (Windows). The VERSION variable is
# used on the other systems.
#--------------------------------------------------------------------
PACKAGE=tls
MAJOR_VERSION=1
MINOR_VERSION=3
PATCHLEVEL=
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}${PATCHLEVEL}
NODOT_VERSION=${MAJOR_VERSION}${MINOR_VERSION}
AC_SUBST(PACKAGE)
AC_SUBST(VERSION)
|
|
|
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# like dots in # library names (Windows). The VERSION variable is
# used on the other systems.
#--------------------------------------------------------------------
PACKAGE=tls
MAJOR_VERSION=1
MINOR_VERSION=4
PATCHLEVEL=
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}${PATCHLEVEL}
NODOT_VERSION=${MAJOR_VERSION}${MINOR_VERSION}
AC_SUBST(PACKAGE)
AC_SUBST(VERSION)
|