configure.in
来自「Linux下的MSN聊天程序源码」· IN 代码 · 共 47 行
IN
47 行
AC_INIT(init.tcl)AC_CONFIG_AUX_DIR(config)CONFIGDIR=${srcdir}/configAC_SUBST(CONFIGDIR)PACKAGE=bwidgetMAJOR_VERSION=1MINOR_VERSION=6PATCHLEVEL=VERSION=${MAJOR_VERSION}.${MINOR_VERSION}${PATCHLEVEL}NODOT_VERSION=${MAJOR_VERSION}${MINOR_VERSION}AC_SUBST(PACKAGE)AC_SUBST(VERSION)eval AC_DEFINE_UNQUOTED(VERSION, "${VERSION}")AC_PROG_INSTALL#--------------------------------------------------------------------# "cygpath" is used on windows to generate native path names for include# files.# These variables should only be used with the compiler and linker since# they generate native path names.## Unix tclConfig.sh points SRC_DIR at the top-level directory of# the Tcl sources, while the Windows tclConfig.sh points SRC_DIR at# the win subdirectory. Hence the different usages of SRC_DIR below.## This must be done before calling SC_PUBLIC_TCL_HEADERS#--------------------------------------------------------------------case "`uname -s`" in *win32* | *WIN32* | *CYGWIN_NT*|*CYGWIN_98*|*CYGWIN_95*) CYGPATH="cygpath -w" ;; *) CYGPATH=echo ;;esacAC_SUBST(CYGPATH)AC_OUTPUT([Makefile])
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?