ant.m4

来自「pic 模拟程序!面向对象」· M4 代码 · 共 34 行

M4
34
字号
dnl ######################################################################dnldnl File:       ant.m4dnldnl Purpose:    Determine where ant is.dnldnl Version:    $Id: ant.m4,v 1.2 2005/04/21 06:09:32 roopa Exp $dnldnl Copyright Tech-X Corporation, 2001.  Redistribution allowed provideddnl this copyright statement remains intact.dnldnl ###################################################################### dnl ######################################################################dnldnl Determine the location of antdnldnl ######################################################################AC_ARG_WITH(ant-path, [  --with-ant-path=<ant location>         to set location ofant], ANT_PATH="$withval")if test -z "$ANT_PATH"; then  ANT_PATH=/usr/local/apache-ant-1.5.3-1/binfiAC_PATH_PROGS(ANT, ant, , $ANT_PATH)if test -n "$ANT"; then  ANT_BINDIR=`dirname $ANT`  ANT_BINDIR=`(cd $ANT_BINDIR; pwd)`  echo setting ant... $ANTelse    AC_MSG_ERROR(Unable to find ant in $ANT_PATH.  Use --with-ant-path to set the correct location of ant.)fi

⌨️ 快捷键说明

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