diff options
author | fluxgen <fluxgen> | 2003-05-08 10:50:43 (GMT) |
---|---|---|
committer | fluxgen <fluxgen> | 2003-05-08 10:50:43 (GMT) |
commit | 8c3dc225054123ef04440c348710472e6ffdd88e (patch) | |
tree | 16990dce6096a8f8cfed3f15bab1becf65cf980f /configure.in | |
parent | 79a6bbe715fa6565b21de50a47d92a2cc8822957 (diff) | |
download | fluxbox_pavel-8c3dc225054123ef04440c348710472e6ffdd88e.zip fluxbox_pavel-8c3dc225054123ef04440c348710472e6ffdd88e.tar.bz2 |
conditional compile of REMEMBER
Diffstat (limited to 'configure.in')
-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( |