/usr/share/aclocal/llnl_check_automake.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 | dnl
dnl @synopsis LLNL_CHECK_AUTOMAKE(VERSION)
dnl
dnl Check whether automake is the specified version.
dnl
dnl @author Gary Kumfert
AC_DEFUN([LLNL_CHECK_AUTOMAKE],
[
AC_MSG_CHECKING(for automake/aclocal version)
changequote(,)
llnl_automake_version=`automake --version 2>/dev/null | sed '1s/.* \([^ ]*\)$/\1/g;1q'`
changequote([,])
if test "X$1" = "X$llnl_automake_version"; then
AC_MSG_RESULT([$llnl_automake_version (enabled)])
else
AUTOMAKE="$SHELL $am_aux_dir/disabled automake"
ACLOCAL="$SHELL $am_aux_dir/disabled autoconf"
AC_MSG_RESULT([$llnl_automake_version (disabled)])
fi
])
|