summaryrefslogtreecommitdiffstats
path: root/tools/configure.ac
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2020-11-25 10:08:43 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2020-11-25 10:08:43 (GMT)
commit0897da3fcbc72adbcfa8b94ae8dcb991f6723c79 (patch)
treea6fc0f573b8e93152542a65488dec72c7ebc11b2 /tools/configure.ac
parent86cdeed19c5cd69b1fa6da0fa65b12301b3b2fc8 (diff)
parente037b3a40c7b761c9348c2abba648e1b037a4e97 (diff)
downloadtcl-0897da3fcbc72adbcfa8b94ae8dcb991f6723c79.zip
tcl-0897da3fcbc72adbcfa8b94ae8dcb991f6723c79.tar.gz
tcl-0897da3fcbc72adbcfa8b94ae8dcb991f6723c79.tar.bz2
Merge 8.7
Diffstat (limited to 'tools/configure.ac')
-rw-r--r--tools/configure.ac35
1 files changed, 0 insertions, 35 deletions
diff --git a/tools/configure.ac b/tools/configure.ac
deleted file mode 100644
index 7950578..0000000
--- a/tools/configure.ac
+++ /dev/null
@@ -1,35 +0,0 @@
-dnl This file is an input file used by the GNU "autoconf" program to
-dnl generate the file "configure", which is run to configure the
-dnl Makefile in this directory.
-AC_INIT(man2tcl.c)
-AC_PREREQ(2.69)
-
-# Recover information that Tcl computed with its configure script.
-
-#--------------------------------------------------------------------
-# See if there was a command-line option for where Tcl is; if
-# not, assume that its top-level directory is a sibling of ours.
-#--------------------------------------------------------------------
-
-DEF_VER=9.0
-
-AC_ARG_WITH(tcl, [ --with-tcl=DIR use Tcl $DEF_VER binaries from DIR], TCL_BIN_DIR=$withval, TCL_BIN_DIR=`cd ../../tcl$DEF_VER$TCL_PATCH_LEVEL/unix; pwd`)
-if test ! -d $TCL_BIN_DIR; then
- AC_MSG_ERROR(Tcl directory $TCL_BIN_DIR doesn't exist)
-fi
-if test ! -f $TCL_BIN_DIR/tclConfig.sh; then
- AC_MSG_ERROR(There's no tclConfig.sh in $TCL_BIN_DIR; perhaps you didn't specify the Tcl *build* directory (not the toplevel Tcl directory) or you forgot to configure Tcl?)
-fi
-
-. $TCL_BIN_DIR/tclConfig.sh
-
-TCL_WIN_VERSION=$TCL_MAJOR_VERSION$TCL_MINOR_VERSION
-AC_SUBST(TCL_WIN_VERSION)
-CC=$TCL_CC
-AC_SUBST(CC)
-AC_SUBST(TCL_VERSION)
-AC_SUBST(TCL_PATCH_LEVEL)
-AC_SUBST(TCL_SRC_DIR)
-AC_SUBST(TCL_BIN_DIR)
-
-AC_OUTPUT(Makefile tcl.hpj)