ac_check_rqrd_class.ac
来自「mysql数据库」· AC 代码 · 共 27 行
AC
27 行
dnl @synopsis AC_CHECK_RQRD_CLASSdnldnl AC_CHECK_RQRD_CLASS tests the existence of a given Java class, either indnl a jar or in a '.class' file and fails if it doesn't exist.dnl Its success or failure can depend on a proper setting of thednl CLASSPATH env. variable.dnldnl Note: This is part of the set of autoconf M4 macros for Java programs.dnl It is VERY IMPORTANT that you download the whole set, somednl macros depend on other. Unfortunately, the autoconf archive does notdnl support the concept of set of macros, so I had to break it fordnl submission.dnl The general documentation, as well as the sample configure.in, isdnl included in the AC_PROG_JAVA macro.dnldnl @author Stephane Bortzmeyer <bortzmeyer@pasteur.fr>dnl @version $Id: ac_check_rqrd_class.ac,v 1.1 2001/08/23 16:58:43 dda Exp $dnlAC_DEFUN([AC_CHECK_RQRD_CLASS],[CLASS=`echo $1|sed 's/\./_/g'`AC_CHECK_CLASS($1)if test "$HAVE_LAST_CLASS" = "no"; then AC_MSG_ERROR([Required class $1 missing, exiting.])fi])
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?