aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Tagliamonte <paultag@fluxbox.org>2011-12-10 16:07:28 (GMT)
committerPaul Tagliamonte <paultag@fluxbox.org>2011-12-10 16:07:28 (GMT)
commit898e3b2a81b0c5966ffe9f85cc2a47b54fda23cc (patch)
treec2ee437eea02c5cb0913c0a0e6b707d3df41e350
parent1311440217ca494aa2201f405745eb804a7f3112 (diff)
downloadfluxbox_paul-fbcompose-integration.zip
fluxbox_paul-fbcompose-integration.tar.bz2
Fixing up the configure script to disable compositing by default.fbcompose-integration
-rw-r--r--configure.in16
1 files changed, 5 insertions, 11 deletions
diff --git a/configure.in b/configure.in
index 6a9aba1..8b93a8a 100644
--- a/configure.in
+++ b/configure.in
@@ -352,11 +352,6 @@ AC_ARG_ENABLE(nls,
352) 352)
353AC_SUBST(NLS) 353AC_SUBST(NLS)
354 354
355
356
357
358
359
360dnl Check for new timed pixmap cache 355dnl Check for new timed pixmap cache
361AC_MSG_CHECKING([whether to use the new timed pixmap cache]) 356AC_MSG_CHECKING([whether to use the new timed pixmap cache])
362AC_ARG_ENABLE( 357AC_ARG_ENABLE(
@@ -372,7 +367,6 @@ AC_ARG_ENABLE(
372 AC_DEFINE(TIMEDCACHE, 1, "timed cache") 367 AC_DEFINE(TIMEDCACHE, 1, "timed cache")
373) 368)
374 369
375
376AC_MSG_CHECKING([whether to have Xft support]) 370AC_MSG_CHECKING([whether to have Xft support])
377AM_PATH_XFT(yes, 371AM_PATH_XFT(yes,
378 XFT=true, 372 XFT=true,
@@ -640,7 +634,7 @@ enableval="yes"
640AC_MSG_CHECKING([whether fbcompose should be built]) 634AC_MSG_CHECKING([whether fbcompose should be built])
641AC_ARG_ENABLE(fbcompose, 635AC_ARG_ENABLE(fbcompose,
642 AC_HELP_STRING([--enable-fbcompose], 636 AC_HELP_STRING([--enable-fbcompose],
643 [build the fluxbox compositor [default=yes]]), , 637 [build the fluxbox compositor (ALPHA QUALITY) [default=no]]), ,
644 [enableval=yes]) 638 [enableval=yes])
645if test "x$enableval" = "xyes"; then 639if test "x$enableval" = "xyes"; then
646 AC_MSG_RESULT([yes]) 640 AC_MSG_RESULT([yes])
@@ -665,8 +659,8 @@ enableval="yes"
665AC_MSG_CHECKING([whether to have XRender compositing support]) 659AC_MSG_CHECKING([whether to have XRender compositing support])
666AC_ARG_ENABLE(xrender-compositing, 660AC_ARG_ENABLE(xrender-compositing,
667 AC_HELP_STRING([--enable-xrender-compositing], 661 AC_HELP_STRING([--enable-xrender-compositing],
668 [XRender support for fbcompose [default=yes]]), , 662 [XRender support for fbcompose [default=no]]), ,
669 [enableval=yes]) 663 [enableval=no])
670if test "x$enableval" = "xyes" -a "x$BUILD_FBCOMPOSE" = "xtrue"; then 664if test "x$enableval" = "xyes" -a "x$BUILD_FBCOMPOSE" = "xtrue"; then
671 AC_MSG_RESULT([yes]) 665 AC_MSG_RESULT([yes])
672 AC_CHECK_LIB([dl], [dlopen], 666 AC_CHECK_LIB([dl], [dlopen],
@@ -698,8 +692,8 @@ enableval="yes"
698AC_MSG_CHECKING([whether to have OpenGL compositing support]) 692AC_MSG_CHECKING([whether to have OpenGL compositing support])
699AC_ARG_ENABLE(opengl-compositing, 693AC_ARG_ENABLE(opengl-compositing,
700 AC_HELP_STRING([--enable-opengl-compositing], 694 AC_HELP_STRING([--enable-opengl-compositing],
701 [OpenGL support for fbcompose [default=yes]]), , 695 [OpenGL support for fbcompose [default=no]]), ,
702 [enableval=yes]) 696 [enableval=no])
703if test "x$enableval" = "xyes" -a "x$BUILD_FBCOMPOSE" = "xtrue"; then 697if test "x$enableval" = "xyes" -a "x$BUILD_FBCOMPOSE" = "xtrue"; then
704 AC_MSG_RESULT([yes]) 698 AC_MSG_RESULT([yes])
705 AC_CHECK_LIB([dl], [dlopen], 699 AC_CHECK_LIB([dl], [dlopen],