CVSROOT: /home/x-cvs
Module name: xc
Changes by: [EMAIL PROTECTED] 03/07/09 08:27:41
Log message:
300. X.Org IPv6 changes (Bugzilla #227, Alan Coopersmith, Marc La France).
See http://www.x.org/IPV6_Specific_Changes.html for details. This has
been further modified as follows.
- Deal with small memory leaks in xdm & xauth.
- Fix a number of compilation issues.
- Where supported, use SIOCGLIFCONF to query network interfaces on more
than only Solaris.
- Incorporate X.Org responses to comments #'s 1, 2, 4, 5, 7, 10, 11, 12,
13, 14 and 15 (taken from an X.Org-internal document dated 2003.06.17).
- Replace HasIPv6 imake symbol with BuildIPv6, defaulting it to YES, and
build in IPv6 support whenever BuildIPv6 is asserted _and_ the OS
#define's AF_INET6. This is to maximise IPv6 code exposure and
eliminate <OS>.cf file changes to support IPv6.
299. On Solaris, don't allow remote root xdm logins if CONSOLE is set in
/etc/default/login (Bugzilla #227, Alan Coopersmith).
298. Fix SEGV in fstobdf when font server is not specified and FSServerName()
returns NULL (Bugzilla #227, Alan Coopersmith).
297. Fix XDMCP bug that could cause local host entries in /etc/X0.hosts to be
lost (Bugzilla #227, Alan Coopersmith).
296. Make certain xtrans static variable volatile to avoid optimisation issues
that occur when they are modified by SIGALRM handlers
(Bugzilla #227, Alan Coopersmith).
295. Use %p instead of %x to print pointer values in xtrans debug messages to
avoid overflow on platforms with 32-bit ints & 64-bit pointers
(Bugzilla #227, Alan Coopersmith).
294. Change SUN-RPC code to use authdes_seccreate() call rather than the
deprecated authdes_create() (Bugzilla #227, Alan Coopersmith).
293. Add xdm /dev/random handling for Solaris
(Bugzilla #227, Alan Coopersmith).
292. Solaris compile fixes (Bugzilla #227, Alan Coopersmith).
291. Update X.Org version numbers to X11R6.6 or X11R6.7 and replace old
references to X Consortium with X.Org (Bugzilla #227, Alan Coopersmith).
Modified files:
./:
LABEL registry
xc/config/cf/:
NetBSD.cf X11.tmpl sun.cf
xc/doc/man/general/:
security.man
xc/doc/specs/SM/:
xsmp.ms
xc/doc/specs/X11/:
CH02 CH09 abstract.t
xc/doc/specs/XDMCP/:
xdmcp.ms
xc/doc/specs/XProtocol/:
X11.encoding X11.protocol
xc/doc/specs/xtrans/:
Xtrans.mm
xc/include/:
X.h
xc/include/fonts/:
FS.h
xc/lib/SM/:
sm_genid.c
xc/lib/X11/:
ConnDis.c
xc/lib/Xdmcp/:
Xdmcp.h
xc/lib/xtrans/:
Xtrans.c Xtrans.h Xtranssock.c Xtransutil.c
xc/programs/Xserver/:
Xserver.man
xc/programs/Xserver/hw/xfree86/:
CHANGELOG
xc/programs/Xserver/os/:
access.c connection.c utils.c xdmcp.c
xc/programs/fstobdf/:
fstobdf.c
xc/programs/lbxproxy/di/:
Imakefile pm.c
xc/programs/proxymngr/:
Imakefile main.c
xc/programs/xauth/:
Imakefile gethost.c parsedpy.c process.c xauth.c xauth.h
xauth.man
xc/programs/xdm/:
Imakefile access.c auth.c choose.c chooser.c dm.c dm.h
dpylist.c genauth.c greet.h netaddr.c resource.c
session.c socket.c streams.c xdm.man xdmcp.c
xc/programs/xdm/config/:
Xaccess
xc/programs/xdm/greeter/:
Login.c greet.c verify.c
xc/programs/xfs/os/:
access.c connection.c
xc/programs/xhost/:
xhost.c xhost.man
xc/programs/xrx/helper/:
Imakefile
Revision Changes Path
1.2 +67 -44 xc/LABEL
1.8 +3 -1 xc/registry
3.112 +8 -1 xc/config/cf/NetBSD.cf
1.211 +49 -7 xc/config/cf/X11.tmpl
3.68 +6 -2 xc/config/cf/sun.cf
1.5 +3 -3 xc/doc/man/general/security.man
1.2 +20 -19 xc/doc/specs/SM/xsmp.ms
1.2 +43 -27 xc/doc/specs/X11/CH02
1.2 +25 -19 xc/doc/specs/X11/CH09
1.2 +9 -7 xc/doc/specs/X11/abstract.t
1.2 +1170 -882 xc/doc/specs/XDMCP/xdmcp.ms
1.2 +45 -42 xc/doc/specs/XProtocol/X11.encoding
1.4 +33 -22 xc/doc/specs/XProtocol/X11.protocol
1.2 +11 -7 xc/doc/specs/xtrans/Xtrans.mm
1.6 +3 -2 xc/include/X.h
1.9 +2 -1 xc/include/fonts/FS.h
3.17 +39 -4 xc/lib/SM/sm_genid.c
3.26 +5 -1 xc/lib/X11/ConnDis.c
3.7 +6 -2 xc/lib/Xdmcp/Xdmcp.h
3.30 +35 -22 xc/lib/xtrans/Xtrans.c
3.19 +13 -3 xc/lib/xtrans/Xtrans.h
3.57 +380 -62 xc/lib/xtrans/Xtranssock.c
3.26 +84 -8 xc/lib/xtrans/Xtransutil.c
3.26 +10 -1 xc/programs/Xserver/Xserver.man
3.2771 +34 -2 xc/programs/Xserver/hw/xfree86/CHANGELOG
3.46 +236 -25 xc/programs/Xserver/os/access.c
3.60 +13 -1 xc/programs/Xserver/os/connection.c
3.89 +26 -4 xc/programs/Xserver/os/utils.c
3.23 +404 -73 xc/programs/Xserver/os/xdmcp.c
1.7 +8 -3 xc/programs/fstobdf/fstobdf.c
1.3 +6 -1 xc/programs/lbxproxy/di/Imakefile
1.12 +38 -7 xc/programs/lbxproxy/di/pm.c
1.14 +7 -3 xc/programs/proxymngr/Imakefile
1.9 +33 -6 xc/programs/proxymngr/main.c
3.6 +4 -3 xc/programs/xauth/Imakefile
3.18 +113 -25 xc/programs/xauth/gethost.c
3.7 +8 -4 xc/programs/xauth/parsedpy.c
3.20 +91 -78 xc/programs/xauth/process.c
1.6 +5 -1 xc/programs/xauth/xauth.c
1.7 +10 -3 xc/programs/xauth/xauth.h
1.9 +8 -3 xc/programs/xauth/xauth.man
3.54 +37 -9 xc/programs/xdm/Imakefile
3.11 +164 -13 xc/programs/xdm/access.c
3.28 +96 -15 xc/programs/xdm/auth.c
3.17 +23 -5 xc/programs/xdm/choose.c
3.25 +123 -12 xc/programs/xdm/chooser.c
3.22 +6 -3 xc/programs/xdm/dm.c
3.30 +25 -2 xc/programs/xdm/dm.h
1.6 +2 -1 xc/programs/xdm/dpylist.c
3.16 +44 -16 xc/programs/xdm/genauth.c
1.9 +2 -2 xc/programs/xdm/greet.h
3.7 +40 -1 xc/programs/xdm/netaddr.c
3.11 +67 -6 xc/programs/xdm/resource.c
3.34 +15 -2 xc/programs/xdm/session.c
3.11 +416 -39 xc/programs/xdm/socket.c
3.7 +20 -1 xc/programs/xdm/streams.c
3.23 +78 -2 xc/programs/xdm/xdm.man
3.22 +323 -77 xc/programs/xdm/xdmcp.c
1.4 +22 -2 xc/programs/xdm/config/Xaccess
3.18 +7 -2 xc/programs/xdm/greeter/Login.c
3.17 +25 -4 xc/programs/xdm/greeter/greet.c
3.25 +42 -1 xc/programs/xdm/greeter/verify.c
3.8 +4 -1 xc/programs/xfs/os/access.c
3.26 +2 -1 xc/programs/xfs/os/connection.c
3.21 +164 -6 xc/programs/xhost/xhost.c
1.9 +7 -4 xc/programs/xhost/xhost.man
1.3 +6 -3 xc/programs/xrx/helper/Imakefile
_______________________________________________
Cvs-commit mailing list
[EMAIL PROTECTED]
http://XFree86.Org/mailman/listinfo/cvs-commit