summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorJakob Bornecrantz <jakob@vmware.com>2009-04-18 23:13:56 +0100
committerJakob Bornecrantz <jakob@vmware.com>2009-04-19 16:24:41 +0100
commit373e6716830c52377374458a3c655f32ae84b54f (patch)
treecc79076cebc58bfa208c495b4671e4619167d7e2 /configure.ac
parent90a23e340fbfedd76f255fbcab88a07ece2b65db (diff)
autoconf: Build gallium softpipe when driver=xlib
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index ce7507fd296..c4fe8a1a5f5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -424,12 +424,13 @@ GALLIUM_STATE_TRACKERS_DIRS=""
case "$mesa_driver" in
xlib)
DRIVER_DIRS="x11"
+ GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS xlib"
;;
dri)
SRC_DIRS="glx/x11 $SRC_DIRS"
DRIVER_DIRS="dri"
WINDOW_SYSTEM="dri"
- GALLIUM_WINSYS_DIRS="drm $GALLIUM_WINSYS_DIRS"
+ GALLIUM_WINSYS_DIRS="$GALLIUM_WINSYS_DIRS drm"
;;
osmesa)
DRIVER_DIRS="osmesa"
@@ -1107,6 +1108,9 @@ no)
yes)
# look at what else is built
case "$mesa_driver" in
+ xlib)
+ GALLIUM_STATE_TRACKERS_DIRS=glx
+ ;;
dri)
GALLIUM_STATE_TRACKERS_DIRS=egl
;;