summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Krier <cedk@gentoo.org>2010-03-17 12:02:40 +0000
committerCédric Krier <cedk@gentoo.org>2010-03-17 12:02:40 +0000
commit9e79b1ef93093741766efba5835677f8dc000fb0 (patch)
tree9859c833b3d108f3a534f4d4d8be6312efd3760a /net-news/snownews
parentReally don't install the TTF font. Also fixes bug #30689. (diff)
downloadgentoo-2-9e79b1ef93093741766efba5835677f8dc000fb0.tar.gz
gentoo-2-9e79b1ef93093741766efba5835677f8dc000fb0.tar.bz2
gentoo-2-9e79b1ef93093741766efba5835677f8dc000fb0.zip
Re-add snownews-1.5.7-stdint.patch for bug #309933
(Portage version: 2.1.7.16/cvs/Linux i686)
Diffstat (limited to 'net-news/snownews')
-rw-r--r--net-news/snownews/ChangeLog6
-rw-r--r--net-news/snownews/files/snownews-1.5.7-stdint.patch17
2 files changed, 22 insertions, 1 deletions
diff --git a/net-news/snownews/ChangeLog b/net-news/snownews/ChangeLog
index c42a82c3e155..8543a10f11e9 100644
--- a/net-news/snownews/ChangeLog
+++ b/net-news/snownews/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-news/snownews
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-news/snownews/ChangeLog,v 1.30 2010/03/14 11:26:50 cedk Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-news/snownews/ChangeLog,v 1.31 2010/03/17 12:02:39 cedk Exp $
+
+ 17 Mar 2010; Cédric Krier <cedk@gentoo.org>
+ +files/snownews-1.5.7-stdint.patch:
+ Re-add snownews-1.5.7-stdint.patch for bug #309933
*snownews-1.5.12-r1 (14 Mar 2010)
diff --git a/net-news/snownews/files/snownews-1.5.7-stdint.patch b/net-news/snownews/files/snownews-1.5.7-stdint.patch
new file mode 100644
index 000000000000..f6c81e79925a
--- /dev/null
+++ b/net-news/snownews/files/snownews-1.5.7-stdint.patch
@@ -0,0 +1,17 @@
+diff -ru snownews-1.5.7~/md5.h snownews-1.5.7/md5.h
+--- snownews-1.5.7~/md5.h 2006-12-03 16:36:54.000000000 +0100
++++ snownews-1.5.7/md5.h 2006-12-03 16:47:23.000000000 +0100
+@@ -31,11 +31,8 @@
+ #ifndef MD5_H
+ #define MD5_H
+
+-#ifdef __alpha
+-typedef unsigned int uint32;
+-#else
+-typedef unsigned long uint32;
+-#endif
++#include <stdint.h>
++typedef uint32_t uint32;
+
+ struct MD5Context {
+ uint32 buf[4];