This file is indexed.

/usr/share/aclocal/llnl_check_classpath.m4 is in libsidl-dev 1.4.0.dfsg-8build3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
dnl *** Downloaded from http://gnu.wwc.edu/software/ac-archive/Java_Support/ac_check_classpath.m4***
dnl @synopsis AC_CHECK_CLASSPATH
dnl
dnl AC_CHECK_CLASSPATH just displays the CLASSPATH, for the edification
dnl of the user.
dnl
dnl 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, some
dnl macros depend on other. Unfortunately, the autoconf archive does not
dnl support the concept of set of macros, so I had to break it for
dnl submission.
dnl The general documentation, as well as the sample configure.in, is
dnl included in the AC_PROG_JAVA macro.
dnl
dnl @author Stephane Bortzmeyer <bortzmeyer@pasteur.fr>
dnl @version $Id: llnl_check_classpath.m4 4618 2005-05-09 22:54:29Z epperly $
dnl
AC_DEFUN([LLNL_CHECK_CLASSPATH],[
AC_CACHE_CHECK([for your CLASSPATH],
	llnl_cv_java_classpath,
[if test "x$CLASSPATH" = x; then
        llnl_cv_java_classpath="none"
else
        llnl_cv_java_classpath="$CLASSPATH"
fi
])])