all repos — fluxbox @ 71c9ff050781dfb53f946a6656900b911a65e7cc

custom fork of the fluxbox windowmanager

add --enable-remember option
rathnor rathnor
commit

71c9ff050781dfb53f946a6656900b911a65e7cc

parent

52a89a92254b7c55f97ee08055d42a4a8e48259f

1 files changed, 14 insertions(+), 0 deletions(-)

jump to
M configure.inconfigure.in

@@ -101,6 +101,20 @@ AC_MSG_RESULT([yes])

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,