diff options
author | Markus Nigbur <pyrania@gentoo.org> | 2005-03-29 11:53:35 +0000 |
---|---|---|
committer | Markus Nigbur <pyrania@gentoo.org> | 2005-03-29 11:53:35 +0000 |
commit | f1e94708a80e1397ef72d17e496aaf05cee10292 (patch) | |
tree | a41e4fe1e0c1b893b53992e70f3072e75489893d /x11-misc | |
parent | Fixed threading check for res_perl (diff) | |
download | gentoo-2-f1e94708a80e1397ef72d17e496aaf05cee10292.tar.gz gentoo-2-f1e94708a80e1397ef72d17e496aaf05cee10292.tar.bz2 gentoo-2-f1e94708a80e1397ef72d17e496aaf05cee10292.zip |
32/64 bit pointer fix, again... See bug #48707 for details.
(Portage version: 2.0.51.19)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/xsnap/ChangeLog | 8 | ||||
-rw-r--r-- | x11-misc/xsnap/files/xsnap-1.4-gentoo.patch | 11 | ||||
-rw-r--r-- | x11-misc/xsnap/xsnap-1.4.3.ebuild | 5 |
3 files changed, 20 insertions, 4 deletions
diff --git a/x11-misc/xsnap/ChangeLog b/x11-misc/xsnap/ChangeLog index 9bbf02b87d26..68cf2d5b391c 100644 --- a/x11-misc/xsnap/ChangeLog +++ b/x11-misc/xsnap/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-misc/xsnap -# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsnap/ChangeLog,v 1.12 2004/12/19 01:53:10 port001 Exp $ +# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsnap/ChangeLog,v 1.13 2005/03/29 11:53:35 pyrania Exp $ + + 29 Mar 2005; Markus Nigbur <pyrania@gentoo.org> + +files/xsnap-1.4-gentoo.patch, xsnap-1.4.3.ebuild: + 32/64 bit pointer fix, again... See bug #48707 for details. *xsnap-1.4.3 (17 Dec 2004) diff --git a/x11-misc/xsnap/files/xsnap-1.4-gentoo.patch b/x11-misc/xsnap/files/xsnap-1.4-gentoo.patch new file mode 100644 index 000000000000..c71ce8e7759b --- /dev/null +++ b/x11-misc/xsnap/files/xsnap-1.4-gentoo.patch @@ -0,0 +1,11 @@ +--- xsnap.c 2004-09-30 00:59:15.000000000 -0600 ++++ xsnap.c.fix 2005-02-01 00:00:05.369862512 -0600 +@@ -18,6 +18,8 @@ + */ + + #include <stdio.h> ++#include <string.h> ++#include <stdlib.h> + #include <unistd.h> + #include <sys/stat.h> + #include <zlib.h> diff --git a/x11-misc/xsnap/xsnap-1.4.3.ebuild b/x11-misc/xsnap/xsnap-1.4.3.ebuild index c55ea7500add..87d684a0caa4 100644 --- a/x11-misc/xsnap/xsnap-1.4.3.ebuild +++ b/x11-misc/xsnap/xsnap-1.4.3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2004 Gentoo Foundation +# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsnap/xsnap-1.4.3.ebuild,v 1.1 2004/12/19 01:53:10 port001 Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsnap/xsnap-1.4.3.ebuild,v 1.2 2005/03/29 11:53:35 pyrania Exp $ inherit eutils @@ -16,6 +16,7 @@ IUSE="" DEPEND="virtual/x11" src_compile() { + epatch ${FILESDIR}/${PN}-1.4-gentoo.patch || die "epatch failed." xmkmf || die make || die } |