aboutsummaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorrathnor <rathnor>2003-04-26 08:01:46 (GMT)
committerrathnor <rathnor>2003-04-26 08:01:46 (GMT)
commit71c9ff050781dfb53f946a6656900b911a65e7cc (patch)
tree701f84696131aa2bd1cfce2d1668861e02c617e4 /configure.in
parent52a89a92254b7c55f97ee08055d42a4a8e48259f (diff)
downloadfluxbox-71c9ff050781dfb53f946a6656900b911a65e7cc.zip
fluxbox-71c9ff050781dfb53f946a6656900b911a65e7cc.tar.bz2
add --enable-remember option
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in14
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
104dnl Check for Remember options
105AC_MSG_CHECKING([whether to include remember functionality])
106AC_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
104AC_MSG_CHECKING([whether to include the new WM Spec]) 118AC_MSG_CHECKING([whether to include the new WM Spec])
105AC_ARG_ENABLE( 119AC_ARG_ENABLE(
106 newwmspec, 120 newwmspec,