"Fossies" - the Fresh Open Source Software archive 
Member "am-utils-6.1.5/m4/macros/localconfig.m4" of archive am-utils-6.1.5.tar.gz:
dnl ######################################################################
dnl check if a local configuration file exists
AC_DEFUN([AMU_LOCALCONFIG],
[AC_MSG_CHECKING(a local configuration file)
if test -f localconfig.h
then
AC_DEFINE(HAVE_LOCALCONFIG_H)
AC_MSG_RESULT(yes)
else
AC_MSG_RESULT(no)
fi
])
dnl ======================================================================