From: Jakob Bornecrantz Date: Sat, 18 Apr 2009 22:13:56 +0000 (+0100) Subject: autoconf: Build gallium softpipe when driver=xlib X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=373e6716830c52377374458a3c655f32ae84b54f;p=mesa.git autoconf: Build gallium softpipe when driver=xlib --- 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 ;;