summaryrefslogtreecommitdiffstats
path: root/win/configure.in
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-12-23 15:42:01 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-12-23 15:42:01 (GMT)
commitd6bbe53dfbca08f807398f7b6fc2c3c16a3d8da8 (patch)
tree638cc33d0b51ae44dfd21e065afc6f7e68c49c71 /win/configure.in
parent02cf664be126c7c2f7e83f2aa5033b654711ac96 (diff)
downloadtcl-d6bbe53dfbca08f807398f7b6fc2c3c16a3d8da8.zip
tcl-d6bbe53dfbca08f807398f7b6fc2c3c16a3d8da8.tar.gz
tcl-d6bbe53dfbca08f807398f7b6fc2c3c16a3d8da8.tar.bz2
More progress in autoconf-2.70 compatibility. Not to be merged to 8.6 yet!
Diffstat (limited to 'win/configure.in')
-rw-r--r--win/configure.in14
1 files changed, 8 insertions, 6 deletions
diff --git a/win/configure.in b/win/configure.in
index 78cf422..44656b9 100644
--- a/win/configure.in
+++ b/win/configure.in
@@ -3,8 +3,9 @@
# generate the file "configure", which is run during Tcl installation
# to configure the system for the local environment.
-AC_INIT(../generic/tcl.h)
-AC_PREREQ(2.59)
+AC_INIT([tcl],[8.5])
+AC_CONFIG_SRCDIR([../generic/tcl.h])
+AC_PREREQ([2.59])
# The following define is needed when building with Cygwin since newer
# versions of autoconf incorrectly set SHELL to /bin/bash instead of
@@ -162,8 +163,8 @@ AC_TRY_COMPILE([
FINDEX_INFO_LEVELS i;
FINDEX_SEARCH_OPS j;
],
- tcl_cv_findex_enums=yes,
- tcl_cv_findex_enums=no)
+ [tcl_cv_findex_enums=yes],
+ [tcl_cv_findex_enums=no])
)
if test "$tcl_cv_findex_enums" = "no"; then
AC_DEFINE(HAVE_NO_FINDEX_ENUMS, 1,
@@ -367,8 +368,9 @@ AC_SUBST(RC_DEFINE)
AC_SUBST(RC_DEFINES)
AC_SUBST(RES)
-AC_OUTPUT(Makefile tclConfig.sh tcl.hpj tclsh.exe.manifest)
+AC_CONFIG_FILES([Makefile tclConfig.sh tcl.hpj tclsh.exe.manifest])
+AC_OUTPUT
dnl Local Variables:
-dnl mode: autoconf;
+dnl mode: autoconf
dnl End: