build: Rename PIPE_LOADER_HAVE_XCB to HAVE_PIPE_LOADER_XCB.
authorMatt Turner <mattst88@gmail.com>
Mon, 22 Apr 2013 18:50:29 +0000 (11:50 -0700)
committerMatt Turner <mattst88@gmail.com>
Tue, 30 Apr 2013 21:03:32 +0000 (14:03 -0700)
For consistency, since we already have HAVE_PIPE_LOADER_{SW,DRM}.

Tested-by: Tom Stellard <thomas.stellard@amd.com>
Tested-by: Aaron Watry <awatry@gmail.com>
Reviewed-by: Brian Paul <brianp@vmware.com>
configure.ac
src/gallium/auxiliary/pipe-loader/pipe_loader_drm.c

index 6cf7b2d6137642c32bd376d003bc7ed45862b410..7cad3cba9cbdba5a20e25d2acddadaf05ffa1264 100644 (file)
@@ -1926,7 +1926,7 @@ if test "x$enable_gallium_loader" = xyes; then
         PKG_CHECK_MODULES([GALLIUM_PIPE_LOADER_XCB], [xcb xcb-dri2],
                           pipe_loader_have_xcb=yes, pipe_loader_have_xcb=no)
         if test "x$pipe_loader_have_xcb" = xyes; then
-            GALLIUM_PIPE_LOADER_DEFINES="$GALLIUM_PIPE_LOADER_DEFINES -DPIPE_LOADER_HAVE_XCB"
+            GALLIUM_PIPE_LOADER_DEFINES="$GALLIUM_PIPE_LOADER_DEFINES -DHAVE_PIPE_LOADER_XCB"
             GALLIUM_PIPE_LOADER_LIBS="$GALLIUM_PIPE_LOADER_LIBS $GALLIUM_PIPE_LOADER_XCB_LIBS $LIBDRM_LIBS"
         fi
     fi
index 6dedc413989901391549838889f977f759c1d818..339d7bf10b67bd86533dd06c136e8a7edd180a69 100644 (file)
@@ -35,7 +35,7 @@
 #include <libudev.h>
 #include <xf86drm.h>
 
-#ifdef PIPE_LOADER_HAVE_XCB
+#ifdef HAVE_PIPE_LOADER_XCB
 
 #include <xcb/dri2.h>
 
@@ -133,7 +133,7 @@ static struct pipe_loader_ops pipe_loader_drm_ops;
 static void
 pipe_loader_drm_x_auth(int fd)
 {
-#if PIPE_LOADER_HAVE_XCB
+#if HAVE_PIPE_LOADER_XCB
    /* Try authenticate with the X server to give us access to devices that X
     * is running on. */
    xcb_connection_t *xcb_conn;