libxcb 1.1.91
This commit is contained in:
parent
db30cb0b81
commit
d7bc8d0a15
@ -1 +1 @@
|
||||
libxcb-1.1.tar.bz2
|
||||
libxcb-1.1.91.tar.bz2
|
||||
|
1
import.log
Normal file
1
import.log
Normal file
@ -0,0 +1 @@
|
||||
libxcb-1_1_91-1_fc10:HEAD:libxcb-1.1.91-1.fc10.src.rpm:1221155742
|
@ -1,27 +1,26 @@
|
||||
diff -up libxcb-1.1/src/xcb_util.c.abstract libxcb-1.1/src/xcb_util.c
|
||||
--- libxcb-1.1/src/xcb_util.c.abstract 2007-10-23 12:44:59.000000000 -0400
|
||||
+++ libxcb-1.1/src/xcb_util.c 2007-11-12 10:32:37.000000000 -0500
|
||||
@@ -249,13 +249,22 @@ static int _xcb_open_unix(char *protocol
|
||||
diff -up libxcb-1.1.91/src/xcb_util.c.abstract libxcb-1.1.91/src/xcb_util.c
|
||||
--- libxcb-1.1.91/src/xcb_util.c.abstract 2008-07-13 07:42:41.000000000 -0400
|
||||
+++ libxcb-1.1.91/src/xcb_util.c 2008-09-10 17:23:10.000000000 -0400
|
||||
@@ -36,6 +36,7 @@
|
||||
#endif
|
||||
#include <netdb.h>
|
||||
#include <errno.h>
|
||||
+#include <stddef.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
@@ -251,6 +252,14 @@ static int _xcb_open_unix(char *protocol
|
||||
if (protocol && strcmp("unix",protocol))
|
||||
return -1;
|
||||
|
||||
- strcpy(addr.sun_path, file);
|
||||
+ memset(&addr, 0, sizeof(addr));
|
||||
+ addr.sun_family = AF_UNIX;
|
||||
|
||||
fd = socket(AF_UNIX, SOCK_STREAM, 0);
|
||||
if(fd == -1)
|
||||
return -1;
|
||||
+
|
||||
+ /* try the abstract socket first */
|
||||
+ strcpy(addr.sun_path + 1, file);
|
||||
+ if(connect(fd, (struct sockaddr *) &addr, sizeof(addr)) != -1)
|
||||
+ if(connect(fd, (struct sockaddr *) &addr, strlen(file) + 1 + offsetof(struct sockaddr_un, sun_path)) != -1)
|
||||
+ return fd;
|
||||
+
|
||||
+ strcpy(addr.sun_path, file);
|
||||
if(connect(fd, (struct sockaddr *) &addr, sizeof(addr)) == -1)
|
||||
return -1;
|
||||
+
|
||||
return fd;
|
||||
}
|
||||
|
||||
strcpy(addr.sun_path, file);
|
||||
addr.sun_family = AF_UNIX;
|
||||
#if HAVE_SOCKADDR_SUN_LEN
|
||||
|
@ -1,6 +1,6 @@
|
||||
Name: libxcb
|
||||
Version: 1.1
|
||||
Release: 4%{?dist}
|
||||
Version: 1.1.91
|
||||
Release: 1%{?dist}
|
||||
Summary: A C binding to the X11 protocol
|
||||
|
||||
Group: System Environment/Libraries
|
||||
@ -18,6 +18,7 @@ BuildRequires: doxygen
|
||||
BuildRequires: graphviz
|
||||
BuildRequires: libXau-devel
|
||||
BuildRequires: libxslt
|
||||
BuildRequires: python
|
||||
BuildRequires: xcb-proto >= 1.1
|
||||
BuildRequires: xorg-x11-proto-devel
|
||||
BuildRequires: xorg-x11-util-macros
|
||||
@ -82,6 +83,9 @@ rm -rf $RPM_BUILD_ROOT
|
||||
%{_datadir}/doc/%{name}-%{version}
|
||||
|
||||
%changelog
|
||||
* Wed Sep 10 2008 Adam Jackson <ajax@redhat.com> 1.1.91-1
|
||||
- libxcb 1.1.91
|
||||
|
||||
* Tue Apr 22 2008 Adam Jackson <ajax@redhat.com> 1.1-4
|
||||
- libxcb-1.1-sloppy-lock.patch: Turn sloppy locking on all the time. I'm
|
||||
tired of fighting it. (#390261)
|
||||
|
Loading…
Reference in New Issue
Block a user