tags 481745 + patch
thanks
Hi,
Attached is the diff for my libxcb 1.1-1.1 NMU.
I'll upload it shortly to the DELAYED/7-day queue.
Cheers,
Julien
diff -u libxcb-1.1/debian/changelog libxcb-1.1/debian/changelog
--- libxcb-1.1/debian/changelog
+++ libxcb-1.1/debian/changelog
@@ -1,3 +1,12 @@
+libxcb (1.1-1.1) unstable; urgency=low
+
+ * Non-maintainer upload.
+ * Turn sloppy locking on by default (closes: #481745). It can be disabled
+ by setting the LIBXCB_DISABLE_SLOPPY_LOCK environment variable (to any
+ value).
+
+ -- Julien Cristau <[EMAIL PROTECTED]> Wed, 28 May 2008 15:16:42 +0200
+
libxcb (1.1-1) unstable; urgency=low
* New upstream release.
only in patch2:
unchanged:
--- libxcb-1.1.orig/src/xcb_conn.c
+++ libxcb-1.1/src/xcb_conn.c
@@ -63,7 +63,7 @@
{
xlib->lock = 0;
#ifndef NDEBUG
- xlib->sloppy_lock = (getenv("LIBXCB_ALLOW_SLOPPY_LOCK") != 0);
+ xlib->sloppy_lock = (getenv("LIBXCB_DISABLE_SLOPPY_LOCK") == NULL);
#endif
pthread_cond_init(&xlib->cond, 0);
return 1;
only in patch2:
unchanged:
--- libxcb-1.1.orig/debian/compat
+++ libxcb-1.1/debian/compat
@@ -0,0 +1 @@
+5