aboutsummaryrefslogtreecommitdiff
path: root/src/main.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/main.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/main.cc')
-rw-r--r--src/main.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.cc b/src/main.cc
index 2afef3f..c93aabf 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -152,9 +152,9 @@ static void showInfo(ostream &ostr) {
152#endif // DEBUG 152#endif // DEBUG
153 "DEBUG" << endl << 153 "DEBUG" << endl <<
154 154
155#ifndef USE_NEWWMSPEC 155#ifndef USE_EWMH
156 NOT << 156 NOT <<
157#endif // USE_NEWWMSPEC 157#endif // USE_EWMH
158 "EWMH" << endl << 158 "EWMH" << endl <<
159 159
160#ifndef HAVE_IMLIB2 160#ifndef HAVE_IMLIB2
@@ -182,7 +182,7 @@ static void showInfo(ostream &ostr) {
182#endif // SHAPE 182#endif // SHAPE
183 "SHAPE" << endl << 183 "SHAPE" << endl <<
184 184
185#ifndef SLIT 185#ifndef USE_SLIT
186 NOT << 186 NOT <<
187#endif // SLIT 187#endif // SLIT
188 "SLIT" << endl << 188 "SLIT" << endl <<