1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/bash -norc
dnl This file is an input file used by the GNU "autoconf" program to
dnl generate the file "configure", which is run during Tcl installation
dnl to configure the system for the local environment.
#
# RCS: @(#) $Id: configure.in,v 1.198 2008/12/18 22:20:32 dkf Exp $
AC_INIT([tcl],[8.6])
AC_PREREQ(2.59)
dnl This is only used when included from macosx/configure.ac
m4_ifdef([SC_USE_CONFIG_HEADERS], [
AC_CONFIG_HEADERS([tclConfig.h:../unix/tclConfig.h.in])
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#! /bin/bash -norc
dnl This file is an input file used by the GNU "autoconf" program to
dnl generate the file "configure", which is run during Tcl installation
dnl to configure the system for the local environment.
#
# RCS: @(#) $Id: configure.in,v 1.199 2008/12/19 03:54:44 dgp Exp $
AC_INIT([tcl],[8.6])
AC_PREREQ(2.59)
dnl This is only used when included from macosx/configure.ac
m4_ifdef([SC_USE_CONFIG_HEADERS], [
AC_CONFIG_HEADERS([tclConfig.h:../unix/tclConfig.h.in])
|
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/* override */ #undef PACKAGE_TARNAME
#endif /* _TCLCONFIG */])
])
TCL_VERSION=8.6
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=6
TCL_PATCH_LEVEL="a4"
VERSION=${TCL_VERSION}
PKG_CFG_ARGS=$@
#------------------------------------------------------------------------
# Handle the --prefix=... option
#------------------------------------------------------------------------
|
|
|
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
/* override */ #undef PACKAGE_TARNAME
#endif /* _TCLCONFIG */])
])
TCL_VERSION=8.6
TCL_MAJOR_VERSION=8
TCL_MINOR_VERSION=6
TCL_PATCH_LEVEL="b1"
VERSION=${TCL_VERSION}
PKG_CFG_ARGS=$@
#------------------------------------------------------------------------
# Handle the --prefix=... option
#------------------------------------------------------------------------
|