diff options
author | 2009-02-02 17:50:58 +0000 | |
---|---|---|
committer | 2009-02-02 17:50:58 +0000 | |
commit | 94f8ac202c35c23f9c3e0199fbf7655964e532b1 (patch) | |
tree | 33dd9363d88956b16f63508ec883c2eee9ca37ac /net-libs/libnfsidmap | |
parent | Version Bump (diff) | |
download | gentoo-2-94f8ac202c35c23f9c3e0199fbf7655964e532b1.tar.gz gentoo-2-94f8ac202c35c23f9c3e0199fbf7655964e532b1.tar.bz2 gentoo-2-94f8ac202c35c23f9c3e0199fbf7655964e532b1.zip |
Fix prototype warnings.
(Portage version: 2.2_rc23/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/libnfsidmap')
-rw-r--r-- | net-libs/libnfsidmap/ChangeLog | 6 | ||||
-rw-r--r-- | net-libs/libnfsidmap/files/libnfsidmap-0.21-headers.patch | 10 | ||||
-rw-r--r-- | net-libs/libnfsidmap/libnfsidmap-0.21-r1.ebuild | 3 |
3 files changed, 17 insertions, 2 deletions
diff --git a/net-libs/libnfsidmap/ChangeLog b/net-libs/libnfsidmap/ChangeLog index 920d70114c9c..492c49970083 100644 --- a/net-libs/libnfsidmap/ChangeLog +++ b/net-libs/libnfsidmap/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-libs/libnfsidmap # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnfsidmap/ChangeLog,v 1.24 2009/02/02 14:12:19 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnfsidmap/ChangeLog,v 1.25 2009/02/02 17:50:58 vapier Exp $ + + 02 Feb 2009; Mike Frysinger <vapier@gentoo.org> + +files/libnfsidmap-0.21-headers.patch, libnfsidmap-0.21-r1.ebuild: + Fix prototype warnings. 02 Feb 2009; Torsten Veller <tove@gentoo.org> libnfsidmap-0.21-r1.ebuild: Back to ~arch until !<net-fs/nfs-utils-0.14 is stabil too (#257148 + dups) diff --git a/net-libs/libnfsidmap/files/libnfsidmap-0.21-headers.patch b/net-libs/libnfsidmap/files/libnfsidmap-0.21-headers.patch new file mode 100644 index 000000000000..ee9371ec49e1 --- /dev/null +++ b/net-libs/libnfsidmap/files/libnfsidmap-0.21-headers.patch @@ -0,0 +1,10 @@ +--- a/nss.c ++++ b/nss.c +@@ -34,6 +34,7 @@ + * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + ++#include <ctype.h> + #include <sys/types.h> + #include <errno.h> + #include <unistd.h> diff --git a/net-libs/libnfsidmap/libnfsidmap-0.21-r1.ebuild b/net-libs/libnfsidmap/libnfsidmap-0.21-r1.ebuild index 43a8216b21a5..d080e3aa0076 100644 --- a/net-libs/libnfsidmap/libnfsidmap-0.21-r1.ebuild +++ b/net-libs/libnfsidmap/libnfsidmap-0.21-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2009 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/libnfsidmap/libnfsidmap-0.21-r1.ebuild,v 1.4 2009/02/02 14:12:19 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-libs/libnfsidmap/libnfsidmap-0.21-r1.ebuild,v 1.5 2009/02/02 17:50:58 vapier Exp $ inherit autotools @@ -22,6 +22,7 @@ src_unpack() { unpack ${A} cd "${S}" epatch "${FILESDIR}"/${PN}-0.19-getgrouplist.patch #169909 + epatch "${FILESDIR}"/${PN}-0.21-headers.patch eautoreconf } |