aboutsummaryrefslogtreecommitdiff
path: root/src/fluxbox.cc
diff options
context:
space:
mode:
authorMathias Gumz <akira at fluxbox dot org>2012-12-05 14:43:33 (GMT)
committerMathias Gumz <akira at fluxbox dot org>2012-12-05 15:00:55 (GMT)
commitb178bed60b5bd8b2c9ed0cbc67fd729ff3820589 (patch)
tree4470405caad514f8207df3219ea0517e5f0316e1 /src/fluxbox.cc
parent7e374fcef67aec07124a12d94833d266f292e583 (diff)
downloadfluxbox-b178bed60b5bd8b2c9ed0cbc67fd729ff3820589.zip
fluxbox-b178bed60b5bd8b2c9ed0cbc67fd729ff3820589.tar.bz2
Simplified 'configure' / build system
* reduced duplicated auto-code * renamed '--enable-newwmspec' to '--enable-ewmh' * don't compile 'Slit'-code when '--disable-slit' * use AS_IF() in configure.in * use AS_HELP_STRING() instead of obsolete AC_HELP_STRING in configure.in * removed redundant calls to 'imlib2-config' to fill in $IMLIB2_CFLAGS and $IMLIB2_LIBS, AC_PATH_GENERIC() does that out of the box already
Diffstat (limited to 'src/fluxbox.cc')
-rw-r--r--src/fluxbox.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/fluxbox.cc b/src/fluxbox.cc
index 129ac80..c144630 100644
--- a/src/fluxbox.cc
+++ b/src/fluxbox.cc
@@ -66,9 +66,9 @@
66#include "config.h" 66#include "config.h"
67#endif // HAVE_CONFIG_H 67#endif // HAVE_CONFIG_H
68 68
69#ifdef USE_NEWWMSPEC 69#ifdef USE_EWMH
70#include "Ewmh.hh" 70#include "Ewmh.hh"
71#endif // USE_NEWWMSPEC 71#endif // USE_EWMH
72#ifdef REMEMBER 72#ifdef REMEMBER
73#include "Remember.hh" 73#include "Remember.hh"
74#endif // REMEMBER 74#endif // REMEMBER
@@ -418,9 +418,9 @@ Fluxbox::Fluxbox(int argc, char **argv,
418 418
419 m_keyscreen = m_mousescreen = m_screen_list.front(); 419 m_keyscreen = m_mousescreen = m_screen_list.front();
420 420
421#ifdef USE_NEWWMSPEC 421#ifdef USE_EWMH
422 addAtomHandler(new Ewmh()); // for Extended window manager atom support 422 addAtomHandler(new Ewmh());
423#endif // USE_NEWWMSPEC 423#endif // USE_EWMH
424 // parse apps file after creating screens (so we can tell if it's a restart 424 // parse apps file after creating screens (so we can tell if it's a restart
425 // for [startup] items) but before creating windows 425 // for [startup] items) but before creating windows
426 // this needs to be after ewmh and gnome, so state atoms don't get 426 // this needs to be after ewmh and gnome, so state atoms don't get