diff options
author | wiz <wiz@pkgsrc.org> | 2008-05-22 21:24:17 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2008-05-22 21:24:17 +0000 |
commit | dbe024cc306197ebff5ce48e63c9d6f2e2dc1c5b (patch) | |
tree | a67fb22259108f67091d4121999f48b4a6f11758 /x11/xinit | |
parent | e55e9f383ef54272fbc09ecec0569222cf710c31 (diff) | |
download | pkgsrc-dbe024cc306197ebff5ce48e63c9d6f2e2dc1c5b.tar.gz |
Update to 1.0.9:
Adam Jackson (2):
Unset session environment variables so startx works within a running session.
xinit 1.0.9
Alan Coopersmith (3):
Use od on /dev/random to generate cookie on Solaris
Check for proper cookie creation on all platforms
Use /bin/ksh instead of /bin/sh on Solaris
Jeremy C. Reed (1):
Use /dev/urandom for cookie it it exists
Jeremy Huddleston (14):
Apple: Fixed issue where display would not be passed correctly to the server if nolisten tcp was enabled.
Apple: Execute /usr/X11/bin/privileged_startx if it's present
Apple: Renamed LaunchAgent to org.x.startx to distinguish it from the org.x.X11 application
Correctly handle users with spaces in $HOME
Apple: privileged_startx is in XINITDIR
Apple: We renamed font_cache.sh to font_cache for better consistency... Changing startx to work with this
Apple: Wait for privileged_startx to finish, so we don't race to create /tmp/.X11-unix
Apple: Added privileged_startx
Apple: Fixed make dist to include a missing header and not include generated sources
Cleaned up handling of defaultserver{,args}
Apple: Use CFProcessPath instead of argv[0] trick.
Apple: Added some OSX version protection, so this will still compile on Tiger and below.
Apple: No need for these bits being here in xinit as of xserver-1.4.0-apple9
Apple: Don't need to spew unneccessary 'directory exists' messages.
Matthieu Herrb (2):
OpenBSD: use openssl rand -hex 16 to generate the cookie.
Replace sprintf() and strcpy() with snprintf().
Diffstat (limited to 'x11/xinit')
-rw-r--r-- | x11/xinit/Makefile | 4 | ||||
-rw-r--r-- | x11/xinit/distinfo | 9 | ||||
-rw-r--r-- | x11/xinit/patches/patch-aa | 17 |
3 files changed, 6 insertions, 24 deletions
diff --git a/x11/xinit/Makefile b/x11/xinit/Makefile index a6f0c44e2fd..00130e7381e 100644 --- a/x11/xinit/Makefile +++ b/x11/xinit/Makefile @@ -1,7 +1,7 @@ -# $NetBSD: Makefile,v 1.7 2008/05/16 13:48:41 tnn Exp $ +# $NetBSD: Makefile,v 1.8 2008/05/22 21:24:17 wiz Exp $ # -DISTNAME= xinit-1.0.8 +DISTNAME= xinit-1.0.9 CATEGORIES= x11 MASTER_SITES= http://xorg.freedesktop.org/releases/individual/app/ EXTRACT_SUFX= .tar.bz2 diff --git a/x11/xinit/distinfo b/x11/xinit/distinfo index 2ce18a7f48e..30999e7947d 100644 --- a/x11/xinit/distinfo +++ b/x11/xinit/distinfo @@ -1,6 +1,5 @@ -$NetBSD: distinfo,v 1.5 2008/04/16 22:07:24 wiz Exp $ +$NetBSD: distinfo,v 1.6 2008/05/22 21:24:17 wiz Exp $ -SHA1 (xinit-1.0.8.tar.bz2) = 0102d2fdc0df3d24077ba826cf57640da46140af -RMD160 (xinit-1.0.8.tar.bz2) = d01b299e6e96c2b5318aaec479c81670b94e2129 -Size (xinit-1.0.8.tar.bz2) = 117049 bytes -SHA1 (patch-aa) = 3d55478d3e2a6a00ff93c63f41cac9e684df0d68 +SHA1 (xinit-1.0.9.tar.bz2) = bbc8f28a38c1033717a12b856d3998e4b85114f0 +RMD160 (xinit-1.0.9.tar.bz2) = 2e5cd9726a92e5abd604e0fd704f81b4adbcd33c +Size (xinit-1.0.9.tar.bz2) = 127210 bytes diff --git a/x11/xinit/patches/patch-aa b/x11/xinit/patches/patch-aa deleted file mode 100644 index 5fdc556a971..00000000000 --- a/x11/xinit/patches/patch-aa +++ /dev/null @@ -1,17 +0,0 @@ -$NetBSD: patch-aa,v 1.2 2008/04/16 22:07:24 wiz Exp $ - ---- startx.cpp.orig 2008-03-06 22:08:48.000000000 +0000 -+++ startx.cpp -@@ -243,7 +243,11 @@ if [ x"$enable_xauth" = x1 ] ; then - #if defined(HAS_COOKIE_MAKER) && defined(MK_COOKIE) - mcookie=`MK_COOKIE` - #else -- mcookie=`dd if=/dev/random bs=16 count=1 2>/dev/null | hexdump -e \\"%08x\\"` -+ if [ -r /dev/urandom ]; then -+ mcookie=`dd if=/dev/urandom bs=16 count=1 2>/dev/null | hexdump -e \\"%08x\\"` -+ else -+ mcookie=`dd if=/dev/random bs=16 count=1 2>/dev/null | hexdump -e \\"%08x\\"` -+ fi - if test x"$mcookie" = x; then - echo "Couldn't create cookie" - exit 1 |