1dnl ###################################################################### 2dnl check if a local configuration file exists 3AC_DEFUN([AMU_LOCALCONFIG], 4[AC_MSG_CHECKING(a local configuration file) 5if test -f localconfig.h 6then 7 AC_DEFINE(HAVE_LOCALCONFIG_H) 8 AC_MSG_RESULT(yes) 9else 10 AC_MSG_RESULT(no) 11fi 12]) 13dnl ====================================================================== 14