add --enable-remember option

This commit is contained in:
rathnor 2003-04-26 08:01:46 +00:00
parent 52a89a9225
commit 71c9ff0507

View file

@ -101,6 +101,20 @@ AC_ARG_ENABLE(
AC_DEFINE(SLIT, 1, " compile with slit")
)
dnl Check for Remember options
AC_MSG_CHECKING([whether to include remember functionality])
AC_ARG_ENABLE(
remember, [ --enable-remember include code for Remembering attributes [default=yes]],
if test x$enableval = "xyes"; then
AC_MSG_RESULT([yes])
AC_DEFINE(REMEMBER, 1, " compile with remember")
else
AC_MSG_RESULT([no])
fi,
AC_MSG_RESULT([yes])
AC_DEFINE(REMEMBER, 1, " compile with remember")
)
AC_MSG_CHECKING([whether to include the new WM Spec])
AC_ARG_ENABLE(
newwmspec,