configure.in

来自「tcl是工具命令语言」· IN 代码 · 共 36 行

IN
36
字号
dnl	This file is an input file used by the GNU "autoconf" program todnl	generate the file "configure", which is run to configure thednl	Makefile in this directory.AC_INIT(man2tcl.c)# RCS: @(#) $Id: configure.in,v 1.9 2001/10/04 20:18:09 hobbs Exp $# 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.4AC_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)fiif 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.shTCL_WIN_VERSION=$TCL_MAJOR_VERSION$TCL_MINOR_VERSIONAC_SUBST(TCL_WIN_VERSION)CC=$TCL_CCAC_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)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?