diff options
-rw-r--r-- | configure.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/configure.in b/configure.in index 1d6b12a..4ab70e3 100644 --- a/configure.in +++ b/configure.in | |||
@@ -108,12 +108,16 @@ AC_ARG_ENABLE( | |||
108 | if test x$enableval = "xyes"; then | 108 | if test x$enableval = "xyes"; then |
109 | AC_MSG_RESULT([yes]) | 109 | AC_MSG_RESULT([yes]) |
110 | AC_DEFINE(REMEMBER, 1, " compile with remember") | 110 | AC_DEFINE(REMEMBER, 1, " compile with remember") |
111 | REMEMBER_SRC=true | ||
111 | else | 112 | else |
112 | AC_MSG_RESULT([no]) | 113 | AC_MSG_RESULT([no]) |
114 | REMEMBER_SRC=false | ||
113 | fi, | 115 | fi, |
114 | AC_MSG_RESULT([yes]) | 116 | AC_MSG_RESULT([yes]) |
115 | AC_DEFINE(REMEMBER, 1, " compile with remember") | 117 | AC_DEFINE(REMEMBER, 1, " compile with remember") |
118 | REMEMBER_SRC=true | ||
116 | ) | 119 | ) |
120 | AM_CONDITIONAL(REMEMBER_SRC, test x$REMEMBER_SRC = xtrue) | ||
117 | 121 | ||
118 | AC_MSG_CHECKING([whether to include the new WM Spec]) | 122 | AC_MSG_CHECKING([whether to include the new WM Spec]) |
119 | AC_ARG_ENABLE( | 123 | AC_ARG_ENABLE( |