mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-10 15:46:33 -04:00
14 lines
452 B
Plaintext
14 lines
452 B
Plaintext
dnl ######################################################################
|
|
dnl AC_SAVE_STATE: save confdefs.h onto dbgcf.h and write $ac_cv_* cache
|
|
dnl variables that are known so far.
|
|
define(AMU_SAVE_STATE,
|
|
dnl AC_MSG_NOTICE(*** SAVING CONFIGURE STATE ***)
|
|
if test -f confdefs.h
|
|
then
|
|
cp confdefs.h dbgcf.h
|
|
fi
|
|
[AC_CACHE_SAVE
|
|
AC_MSG_NOTICE([*** SAVING CONFIGURE STATE ***])]
|
|
)
|
|
dnl ======================================================================
|