diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2013-08-31 16:13:14 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-08-31 16:19:21 +0100 |
commit | ead32f4a1498c2f7b7c74856e97f9e602ed7a274 (patch) | |
tree | 38ee41bd11402468fb3815eedb09e6188919ed51 /configure.ac | |
parent | 8067255dc9185e85b110254ffbea4d9682d3aa2d (diff) |
configure; Remember to disable building the tools
If we find that the headers for the tools are not available on the
system, simply disable building them as they are not essential features
of the driver.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index d0d1a5e6..d0050529 100644 --- a/configure.ac +++ b/configure.ac @@ -167,6 +167,7 @@ PKG_CHECK_MODULES(X11, [x11 xrender xext pixman-1], [x11=yes], [x11=no]) AM_CONDITIONAL(HAVE_X11, test x$x11 = xyes) PKG_CHECK_MODULES(TOOL, [xrandr xdamage xfixes xcursor xtst xext x11], [tools=yes], [tools=no]) +AM_CONDITIONAL(BUILD_TOOLS, test x$tools = xyes) AH_TOP([#include "xorg-server.h"]) @@ -607,12 +608,19 @@ if test "x$dri_msg" = x; then dri_msg=" none" fi +if test "x$tools" = xyes; then + tools_msg=" intel-virtual-output" +else + tools_msg=" none" +fi + echo "" echo "AC_PACKAGE_STRING will be compiled with:" echo " Acceleration backends:$accel_msg" echo " Additional debugging support?$debug_msg" echo " Support for Direct Rendering Infrastructure:$dri_msg" echo " Support for Xv motion compensation (XvMC and libXvMC):$xvmc_msg" +echo " Build additional tools and utilities?$tools_msg" if test -n "$xp_msg"; then echo " Experimental support:$xp_msg" fi |