diff options
author | Stefan Briesenick <sbriesen@gentoo.org> | 2008-01-20 11:48:51 +0000 |
---|---|---|
committer | Stefan Briesenick <sbriesen@gentoo.org> | 2008-01-20 11:48:51 +0000 |
commit | 4d9ae85f524b1ef15648a772265dea959757bc73 (patch) | |
tree | 78cae5ca8ba5a25ba00786274f1f71fba4c19054 /net-dialup/capi4k-utils | |
parent | fix ChangeLog header (diff) | |
download | gentoo-2-4d9ae85f524b1ef15648a772265dea959757bc73.tar.gz gentoo-2-4d9ae85f524b1ef15648a772265dea959757bc73.tar.bz2 gentoo-2-4d9ae85f524b1ef15648a772265dea959757bc73.zip |
added sys/types patch (needed for glibc-2.7, solves bug #201510)
(Portage version: 2.1.4)
Diffstat (limited to 'net-dialup/capi4k-utils')
-rw-r--r-- | net-dialup/capi4k-utils/ChangeLog | 8 | ||||
-rw-r--r-- | net-dialup/capi4k-utils/capi4k-utils-20050718-r3.ebuild | 7 | ||||
-rw-r--r-- | net-dialup/capi4k-utils/files/capi20-types.diff | 10 |
3 files changed, 21 insertions, 4 deletions
diff --git a/net-dialup/capi4k-utils/ChangeLog b/net-dialup/capi4k-utils/ChangeLog index f66eefca41a7..8536f3d8e13f 100644 --- a/net-dialup/capi4k-utils/ChangeLog +++ b/net-dialup/capi4k-utils/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-dialup/capi4k-utils -# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/ChangeLog,v 1.59 2007/11/14 19:59:23 genstef Exp $ +# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/ChangeLog,v 1.60 2008/01/20 11:48:51 sbriesen Exp $ + + 20 Jan 2008; Stefan Briesenick <sbriesen@gentoo.org> + +files/capi20-types.diff, capi4k-utils-20050718-r3.ebuild: + added sys/types patch (needed for glibc-2.7, solves bug #201510) 02 May 2007; Marius Mauch <genone@gentoo.org> capi4k-utils-20050718-r3.ebuild: diff --git a/net-dialup/capi4k-utils/capi4k-utils-20050718-r3.ebuild b/net-dialup/capi4k-utils/capi4k-utils-20050718-r3.ebuild index 0836350d4fc8..c1a8e8efbbce 100644 --- a/net-dialup/capi4k-utils/capi4k-utils-20050718-r3.ebuild +++ b/net-dialup/capi4k-utils/capi4k-utils-20050718-r3.ebuild @@ -1,6 +1,6 @@ -# Copyright 1999-2007 Gentoo Foundation +# Copyright 1999-2008 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/capi4k-utils-20050718-r3.ebuild,v 1.9 2007/11/14 19:59:23 genstef Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dialup/capi4k-utils/capi4k-utils-20050718-r3.ebuild,v 1.10 2008/01/20 11:48:51 sbriesen Exp $ inherit eutils multilib linux-info @@ -49,6 +49,9 @@ src_unpack() { # apply msg2str-safety patch (see bug #170870) epatch "${PATCHDIR}/msg2str-safety.diff" + # apply sys/types patch (needed for glibc-2.7) + epatch "${FILESDIR}/capi20-types.diff" + # set our config cp -f "${FILESDIR}/config" .config # copy init-script config diff --git a/net-dialup/capi4k-utils/files/capi20-types.diff b/net-dialup/capi4k-utils/files/capi20-types.diff new file mode 100644 index 000000000000..5619c48d0b09 --- /dev/null +++ b/net-dialup/capi4k-utils/files/capi20-types.diff @@ -0,0 +1,10 @@ +--- capi4k-utils.orig/capi20/capi20.h 2000-11-19 11:15:01.000000000 +0100 ++++ capi4k-utils/capi20/capi20.h 2007-11-20 21:37:13.000000000 +0100 +@@ -21,6 +21,7 @@ + #define __CAPI20_H__ + + #include <sys/time.h> ++#include <sys/types.h> + + #ifdef __cplusplus + extern "C" { |