/usr/share/aclocal/sysconftool.m4 is in sysconftool 0.17-1.
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 | # Configure sysconftool
# Copyright 2000-2005 Double Precision, Inc. See COPYING for
# distribution information.
#
# AC_PROG_SYSCONFTOOL
AC_DEFUN([AC_PROG_SYSCONFTOOL],
[
AC_PATH_PROGS(SYSCONFTOOL_PERL, perl5 perl, perl)
if test "$SYSCONFTOOL_PERL" = "perl"
then
AC_ERROR(perl not found - please install perl)
fi
AC_MSG_CHECKING(for sysconftool...)
SYSCONFTOOL=""
for sysconf_dir in $ac_aux_dir . .. ../..
do
if test -f $srcdir/$sysconf_dir/sysconftool
then
SYSCONFTOOL=$srcdir/$sysconf_dir/sysconftool
break
fi
done
if test "$SYSCONFTOOL" = ""
then
AC_ERROR(sysconftool missing - not in the package)
fi
AC_MSG_RESULT( $SYSCONFTOOL)
SYSCONFTOOL="$SYSCONFTOOL_PERL $SYSCONFTOOL"
AC_SUBST(SYSCONFTOOL)
]
)
|