mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-10 15:46:33 -04:00
14 lines
384 B
Plaintext
14 lines
384 B
Plaintext
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 ======================================================================
|