summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorcos <cos>2013-05-25 16:48:31 +0200
committercos <cos>2013-05-25 17:23:25 +0200
commitdf0c151f9c87239f5f6e750eb230636707cda0d8 (patch)
treec76f816b31b6eeaa2b782709c8fb4bcb92c15958
parent7c559f00bacaf65d8c1c58aad20b519f9acded93 (diff)
downloadratpoison-df0c151f9c87239f5f6e750eb230636707cda0d8.zip
Add configure option to easily re-enable deprecated setwinstyle.rp_simplified
-rw-r--r--configure.ac8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 099af6f..cf09a94 100644
--- a/configure.ac
+++ b/configure.ac
@@ -41,6 +41,14 @@ AC_ARG_ENABLE(debug,AS_HELP_STRING([--enable-debug],[build with extra debugging
AC_MSG_RESULT(no)
fi],[AC_MSG_RESULT(no)])
+AC_ARG_ENABLE(winliststyle,AS_HELP_STRING([--enable-winliststyle],[support deprecated winliststyle variable]),
+ [if test "x$enableval" != "xno"; then
+ AC_DEFINE_UNQUOTED(WINLISTSTYLE, 1, Define this to support deprecated winliststyle functionality)
+ AC_MSG_RESULT(yes)
+ else
+ AC_MSG_RESULT(no)
+ fi],[AC_MSG_RESULT(no)])
+
AC_ARG_WITH(xterm,AS_HELP_STRING([--with-xterm=PROG],[set the x terminal emulator used by ratpoison]),
term_prog=$withval, term_prog="xterm")
AC_DEFINE_UNQUOTED(TERM_PROG, "$term_prog", X terminal emulator to use)