diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-03-08 13:44:16 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2016-03-08 13:44:16 (GMT) |
commit | 7f848a3e85d288409cc73c957717a2a9f83ea47a (patch) | |
tree | 6189813f94cc56239b0307eed2ae4d264c66903d /tools/configure.ac | |
parent | 44c8b6c3e8a3570b24b2daca27b2f74f68e3ebd2 (diff) | |
download | tcl-7f848a3e85d288409cc73c957717a2a9f83ea47a.zip tcl-7f848a3e85d288409cc73c957717a2a9f83ea47a.tar.gz tcl-7f848a3e85d288409cc73c957717a2a9f83ea47a.tar.bz2 |
configure.in -> configure.ac
Diffstat (limited to 'tools/configure.ac')
-rw-r--r-- | tools/configure.ac | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/tools/configure.ac b/tools/configure.ac new file mode 100644 index 0000000..3caa141 --- /dev/null +++ b/tools/configure.ac @@ -0,0 +1,35 @@ +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=8.7 + +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) |