diff options
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 34feb1d..37c612e 100644 --- a/configure.in +++ b/configure.in | |||
@@ -101,6 +101,20 @@ AC_ARG_ENABLE( | |||
101 | AC_DEFINE(SLIT, 1, " compile with slit") | 101 | AC_DEFINE(SLIT, 1, " compile with slit") |
102 | ) | 102 | ) |
103 | 103 | ||
104 | dnl Check for Remember options | ||
105 | AC_MSG_CHECKING([whether to include remember functionality]) | ||
106 | AC_ARG_ENABLE( | ||
107 | remember, [ --enable-remember include code for Remembering attributes [default=yes]], | ||
108 | if test x$enableval = "xyes"; then | ||
109 | AC_MSG_RESULT([yes]) | ||
110 | AC_DEFINE(REMEMBER, 1, " compile with remember") | ||
111 | else | ||
112 | AC_MSG_RESULT([no]) | ||
113 | fi, | ||
114 | AC_MSG_RESULT([yes]) | ||
115 | AC_DEFINE(REMEMBER, 1, " compile with remember") | ||
116 | ) | ||
117 | |||
104 | AC_MSG_CHECKING([whether to include the new WM Spec]) | 118 | AC_MSG_CHECKING([whether to include the new WM Spec]) |
105 | AC_ARG_ENABLE( | 119 | AC_ARG_ENABLE( |
106 | newwmspec, | 120 | newwmspec, |