configure.in
上传用户:rrhhcc
上传日期:2015-12-11
资源大小:54129k
文件大小:1k
源码类别:

通讯编程

开发平台:

Visual C++

  1. dnl This file is an input file used by the GNU "autoconf" program to
  2. dnl generate the file "configure", which is run to configure the
  3. dnl Makefile in this directory.
  4. AC_INIT(man2tcl.c)
  5. # RCS: @(#) $Id: configure.in,v 1.9 2001/10/04 20:18:09 hobbs Exp $
  6. # Recover information that Tcl computed with its configure script.
  7. #--------------------------------------------------------------------
  8. #       See if there was a command-line option for where Tcl is;  if
  9. #       not, assume that its top-level directory is a sibling of ours.
  10. #--------------------------------------------------------------------
  11. DEF_VER=8.4
  12. 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`)
  13. if test ! -d $TCL_BIN_DIR; then
  14.     AC_MSG_ERROR(Tcl directory $TCL_BIN_DIR doesn't exist)
  15. fi
  16. if test ! -f $TCL_BIN_DIR/tclConfig.sh; then
  17.     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?)
  18. fi
  19. . $TCL_BIN_DIR/tclConfig.sh
  20. TCL_WIN_VERSION=$TCL_MAJOR_VERSION$TCL_MINOR_VERSION
  21. AC_SUBST(TCL_WIN_VERSION)
  22. CC=$TCL_CC
  23. AC_SUBST(CC)
  24. AC_SUBST(TCL_VERSION)
  25. AC_SUBST(TCL_PATCH_LEVEL)
  26. AC_SUBST(TCL_SRC_DIR)
  27. AC_SUBST(TCL_BIN_DIR)
  28. AC_OUTPUT(Makefile tcl.hpj)