Index: head/x11/libxcb/Makefile =================================================================== --- head/x11/libxcb/Makefile (revision 231605) +++ head/x11/libxcb/Makefile (revision 231606) @@ -1,54 +1,55 @@ # New ports collection makefile for: libxcb # Date Created: 2006-08-23 # Whom: Ashish Shukla # # $FreeBSD$ # PORTNAME= libxcb PORTVERSION= 1.2 +PORTREVISION= 1 CATEGORIES= x11 python #MASTER_SITES= XORG/current/src/extras MASTER_SITES= http://xcb.freedesktop.org/dist/ MAINTAINER= wahjava@gmail.com COMMENT= The X protocol C-language Binding (XCB) library BUILD_DEPENDS= ${LOCALBASE}/lib/libcheck.a:${PORTSDIR}/devel/libcheck \ xsltproc:${PORTSDIR}/textproc/libxslt \ ${LOCALBASE}/libdata/pkgconfig/xcb-proto.pc:${PORTSDIR}/x11/xcb-proto \ ${LOCALBASE}/libdata/pkgconfig/pthread-stubs.pc:${PORTSDIR}/devel/libpthread-stubs RUN_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/xcb-proto.pc:${PORTSDIR}/x11/xcb-proto \ ${LOCALBASE}/libdata/pkgconfig/pthread-stubs.pc:${PORTSDIR}/devel/libpthread-stubs CONFIGURE_ARGS+= --disable-build-docs --without-doxygen USE_BZIP2= yes USE_GNOME= gnomehack USE_GMAKE= yes USE_LDCONFIG= yes USE_XORG= xau xdmcp USE_PYTHON= 2.5+ GNU_CONFIGURE= yes CONFIGURE_ARGS+= --with-check=${LOCALBASE} .for f in XPROTO_CFLAGS XPROTO_LIBS XDMCP_CFLAGS XDMCP_LIBS NEEDED_CFLAGS NEEDED_LIBS CONFIGURE_ARGS+=${f}="${${f}}" .endfor CONFIGURE_ENV= LIBS="`pkg-config --libs pthread-stubs`" NEEDED_CFLAGS= -I${LOCALBASE}/include NEEDED_LIBS= -L${LOCALBASE}/lib -lXau ${PTHREAD_STUBS_LIBS} XDMCP_CFLAGS= -I${LOCALBASE}/include XDMCP_LIBS= -L${LOCALBASE}/lib -lXdmcp XPROTO_CFLAGS= -I${LOCALBASE}/include XPROTO_LIBS= -L${LOCALBASE}/lib post-install: @${ECHO_MSG} '' @${CAT} ${PKGMESSAGE} @${ECHO_MSG} '' .include Property changes on: head/x11/libxcb/Makefile ___________________________________________________________________ Modified: cvs2svn:cvs-rev ## -1 +1 ## -1.16 \ No newline at end of property +1.17 \ No newline at end of property Index: head/x11/libxcb/files/patch-src-xcb_auth.c =================================================================== --- head/x11/libxcb/files/patch-src-xcb_auth.c (nonexistent) +++ head/x11/libxcb/files/patch-src-xcb_auth.c (revision 231606) @@ -0,0 +1,16 @@ +--- src/xcb_auth.c.orig 2008-08-28 06:49:21.000000000 -0500 ++++ src/xcb_auth.c 2009-04-04 13:37:45.000000000 -0500 +@@ -251,7 +251,12 @@ + + info->namelen = memdup(&info->name, authptr->name, authptr->name_length); + if(info->namelen) +- ret = compute_auth(info, authptr, sockname); ++ { ++ if (getsockname(fd, sockname, &socknamelen) == -1) ++ ret = 0; ++ else ++ ret = compute_auth(info, authptr, sockname); ++ } + if(!ret) + { + free(info->name); Property changes on: head/x11/libxcb/files/patch-src-xcb_auth.c ___________________________________________________________________ Added: cvs2svn:cvs-rev ## -0,0 +1 ## +1.1 \ No newline at end of property Added: fbsd:nokeywords ## -0,0 +1 ## +yes \ No newline at end of property