Hi,

   > '$xcb_queue_buffer_size' undeclared here

Here's a fix for someone to push; I don't seem to have access to xcb.

commit 42c7ee29dbc08a21420f19964e2a11016c9424c4
Author: Chris Ball <[EMAIL PROTECTED]>
Date:   Tue Oct 14 17:08:49 2008 -0400

    Build fix in configure.ac.
    
    AC_DEFINE() doesn't work on shell variables; "$xcb_queue_buffer_size"
    was being passed into config.h directly without interpolation.

diff --git a/configure.ac b/configure.ac
index 62c20be..085cc4d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -78,7 +78,7 @@ esac
 
 dnl define buffer queue size
 xcb_queue_buffer_size=16384
-AC_DEFINE(XCB_QUEUE_BUFFER_SIZE, $xcb_queue_buffer_size, [XCB buffer queue 
size])
+AC_DEFINE_UNQUOTED(XCB_QUEUE_BUFFER_SIZE, $xcb_queue_buffer_size, [XCB buffer 
queue
 AC_ARG_WITH(queue-size,
             AC_HELP_STRING([--with-queue-size=SIZE],
               [Set the XCB buffer queue size (default is 16384)]),


-- 
Chris Ball   <[EMAIL PROTECTED]>
_______________________________________________
xorg mailing list
[email protected]
http://lists.freedesktop.org/mailman/listinfo/xorg

Reply via email to