📄 ant.m4
字号:
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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -