8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
#--------------------------------------------------------------------
# macro used to verify that the configure script can find the sources
#--------------------------------------------------------------------
AC_INIT(tls.h)
#--------------------------------------------------------------------
# Set package name and version numbers here. The NODOT_VERSION is
# required for constructing the library name on systems that don't
# like dots in # library names (Windows). The VERSION variable is
# used on the other systems.
#--------------------------------------------------------------------
|
>
>
>
|
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
#--------------------------------------------------------------------
# macro used to verify that the configure script can find the sources
#--------------------------------------------------------------------
AC_INIT(tls.h)
AC_CONFIG_AUX_DIR(config)
CONFIGDIR=${srcdir}/config
AC_SUBST(CONFIGDIR)
#--------------------------------------------------------------------
# Set package name and version numbers here. The NODOT_VERSION is
# required for constructing the library name on systems that don't
# like dots in # library names (Windows). The VERSION variable is
# used on the other systems.
#--------------------------------------------------------------------
|