diff options
author | Eric Anholt <anholt@FreeBSD.org> | 2003-08-12 18:35:37 +0000 |
---|---|---|
committer | Eric Anholt <anholt@FreeBSD.org> | 2003-08-12 18:35:37 +0000 |
commit | f6c848659e70e7d31289bd7d3b927fe037655162 (patch) | |
tree | 0171dcce959cf8bc4aa5880e2f3dfdf691b7a0f5 /x11 | |
parent | e235486a470e8420c88533e090e20562c89de4da (diff) | |
download | ports-f6c848659e70e7d31289bd7d3b927fe037655162.tar.gz ports-f6c848659e70e7d31289bd7d3b927fe037655162.zip |
[1] Fix xdmcp queries in the X servers (bug 277)
[2] Fix underlining in the freetype backend (bug 330)
PR: [1] ports/52387
[2] ports/55134
Submitted by: [1] Joel Ray Holveck <joelh@piqnet.org>
[2] Ariff Abdullah <skywizard@MyBSD.org.my>
Notes
Notes:
svn path=/head/; revision=86852
Diffstat (limited to 'x11')
-rw-r--r-- | x11/XFree86-4-clients/Makefile | 2 | ||||
-rw-r--r-- | x11/XFree86-4-libraries/files/patch-access.c | 16 |
2 files changed, 17 insertions, 1 deletions
diff --git a/x11/XFree86-4-clients/Makefile b/x11/XFree86-4-clients/Makefile index aa5bb0f5ef32..21ee681e0780 100644 --- a/x11/XFree86-4-clients/Makefile +++ b/x11/XFree86-4-clients/Makefile @@ -7,7 +7,7 @@ PORTNAME= clients PORTVERSION= 4.3.0 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= x11 MASTER_SITES= ${MASTER_SITE_XFREE} MASTER_SITE_SUBDIR= 4.3.0 diff --git a/x11/XFree86-4-libraries/files/patch-access.c b/x11/XFree86-4-libraries/files/patch-access.c new file mode 100644 index 000000000000..3eb2b97aa37d --- /dev/null +++ b/x11/XFree86-4-libraries/files/patch-access.c @@ -0,0 +1,16 @@ +Index: programs/Xserver/os/access.c +=================================================================== +RCS file: /home/ncvs/xfree/xc/programs/Xserver/os/access.c,v +retrieving revision 3.43 +retrieving revision 3.44 +diff -u -u -r3.43 -r3.44 +--- programs/Xserver/os/access.c 20 Apr 2003 18:35:12 -0000 3.43 ++++ programs/Xserver/os/access.c 25 May 2003 10:38:47 -0000 3.44 +@@ -745,6 +745,7 @@ + if (ifr->ifa_addr.sa_family == AF_DECnet) + continue; + #endif /* DNETCONN */ ++ len = sizeof(*(ifr->ifa_addr)); + family = ConvertAddr(ifr->ifa_addr, &len, (pointer *)&addr); + if (family == -1 || family == FamilyLocal) + continue; |