/usr/share/aclocal/llnl_enable_regression.m4 is in libsidl-dev 1.4.0.dfsg-8.2.
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 27 28 29 30 31 32 33 34 35 36 37 | dnl
dnl Check if the regression tests should be enabled
dnl
dnl
dnl @synopsis LLNL_ENABLE_REGRESSION
dnl
dnl LLNL_ENABLE_REGRESSION defines a conditional that allows the regression
dnl tests to be skipped.
dnl
dnl @author Tom Epperly
dnl @version $Id: llnl_enable_regression.m4 5896 2007-03-05 19:31:20Z epperly $
AC_DEFUN([LLNL_ENABLE_REGRESSION],[
AC_ARG_ENABLE([regression],
[AC_HELP_STRING([--enable-regression],
[enable regression test suite @<:@default=yes@:>@])],
[enable_regression="$enableval"],
[enable_regression=yes])
AM_CONDITIONAL(ENABLE_REGRESSION, test "X$enable_regression" != "Xno")
])
AC_DEFUN([LLNL_ENABLE_DOCUMENTATION],[
AC_ARG_ENABLE([documentation],
[AC_HELP_STRING([--enable-documentation],
[enable documentation generation @<:@default=yes@:>@])],
[enable_documentation="$enableval"],
[enable_documentation=yes])
AM_CONDITIONAL(ENABLE_DOCUMENTATION, test "X$enable_documentation" != "Xno")
])
AC_DEFUN([LLNL_AUTO_DISABLE],[
AC_ARG_ENABLE([auto-disable],
[AC_HELP_STRING([--enable-auto-disable],
[enable automatic disabling of languages that do not configure @<:@default=yes@:>@])],
[enable_auto_disable="$enableval"],
[enable_auto_disable=yes])
])
|