• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/db-4.7.25.NC/dist/aclocal_java/
1dnl @synopsis AC_CHECK_CLASSPATH
2dnl
3dnl AC_CHECK_CLASSPATH just displays the CLASSPATH, for the edification
4dnl of the user.
5dnl
6dnl Note: This is part of the set of autoconf M4 macros for Java programs.
7dnl It is VERY IMPORTANT that you download the whole set, some
8dnl macros depend on other. Unfortunately, the autoconf archive does not
9dnl support the concept of set of macros, so I had to break it for
10dnl submission.
11dnl The general documentation, as well as the sample configure.in, is
12dnl included in the AC_PROG_JAVA macro.
13dnl
14dnl @author Stephane Bortzmeyer <bortzmeyer@pasteur.fr>
15dnl @version $Id: ac_check_classpath.m4,v 12.0 2004/11/17 03:43:38 bostic Exp $
16dnl
17AC_DEFUN([AC_CHECK_CLASSPATH],[
18if test "x$CLASSPATH" = x; then
19        echo "You have no CLASSPATH, I hope it is good"
20else
21        echo "You have CLASSPATH $CLASSPATH, hope it is correct"
22fi
23])
24