diff options
author | joerg <joerg@pkgsrc.org> | 2006-01-23 16:17:13 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-01-23 16:17:13 +0000 |
commit | dd233d89d2ed6743dd9d65424209d07ba4e2370f (patch) | |
tree | 572c6f80eda05b237e5295d611ecfbe8898dd198 /devel/rdp | |
parent | 7cb758a1a3a5961db8e00b34c0188b43e658cd0f (diff) | |
download | pkgsrc-dd233d89d2ed6743dd9d65424209d07ba4e2370f.tar.gz |
Workaround a bug in time.h on DragonFly.
Diffstat (limited to 'devel/rdp')
-rw-r--r-- | devel/rdp/distinfo | 5 | ||||
-rw-r--r-- | devel/rdp/patches/patch-ac | 12 | ||||
-rw-r--r-- | devel/rdp/patches/patch-ad | 12 | ||||
-rw-r--r-- | devel/rdp/patches/patch-ae | 14 |
4 files changed, 42 insertions, 1 deletions
diff --git a/devel/rdp/distinfo b/devel/rdp/distinfo index 3aafe5c15cf..4bde39b50fd 100644 --- a/devel/rdp/distinfo +++ b/devel/rdp/distinfo @@ -1,7 +1,10 @@ -$NetBSD: distinfo,v 1.4 2005/02/23 22:24:32 agc Exp $ +$NetBSD: distinfo,v 1.5 2006/01/23 16:17:13 joerg Exp $ SHA1 (rdp1_5.zip) = 05a450d95aa306231a5762ddc292894f8b0c63f8 RMD160 (rdp1_5.zip) = 723f4860490169aea64a26bf3efaf2c5ff98f97a Size (rdp1_5.zip) = 1234919 bytes SHA1 (patch-aa) = b424b87f71057c81a9d125cd063568ace051ec30 SHA1 (patch-ab) = e4a44c122221196147b9dd16d59fac6da09f2e67 +SHA1 (patch-ac) = 0c9ee2458e999086ef29c1fedb294df31a2e6961 +SHA1 (patch-ad) = 0364b33207f0207876a549fd129e00417eed7769 +SHA1 (patch-ae) = e3bdc40473046c82de367abcc2eaef0a80366433 diff --git a/devel/rdp/patches/patch-ac b/devel/rdp/patches/patch-ac new file mode 100644 index 00000000000..0458308ef00 --- /dev/null +++ b/devel/rdp/patches/patch-ac @@ -0,0 +1,12 @@ +$NetBSD: patch-ac,v 1.1 2006/01/23 16:17:13 joerg Exp $ + +--- rdp_prnt.c.orig 2006-01-15 16:43:46.000000000 +0000 ++++ rdp_prnt.c +@@ -991,6 +991,7 @@ void rdp_print_parser(char * outputfilen + text_printf(" from %s\n" + "*\n" + "*******************************************************************************/\n" ++ "#include <sys/types.h>\n" + "#include <time.h>\n" + "#include \"arg.h\"\n" + "#include \"graph.h\"\n" diff --git a/devel/rdp/patches/patch-ad b/devel/rdp/patches/patch-ad new file mode 100644 index 00000000000..2babe953183 --- /dev/null +++ b/devel/rdp/patches/patch-ad @@ -0,0 +1,12 @@ +$NetBSD: patch-ad,v 1.1 2006/01/23 16:17:13 joerg Exp $ + +--- rdp.c.orig 2006-01-15 16:45:03.000000000 +0000 ++++ rdp.c +@@ -3,6 +3,7 @@ + * Parser generated by RDP on May 04 1998 09:45:17 from rdp.bnf + * + *******************************************************************************/ ++#include <sys/types.h> + #include <time.h> + #include "arg.h" + #include "graph.h" diff --git a/devel/rdp/patches/patch-ae b/devel/rdp/patches/patch-ae new file mode 100644 index 00000000000..5fd7b570310 --- /dev/null +++ b/devel/rdp/patches/patch-ae @@ -0,0 +1,14 @@ +$NetBSD: patch-ae,v 1.1 2006/01/23 16:17:13 joerg Exp $ + +--- mvmsim.c.orig 2006-01-15 16:45:37.000000000 +0000 ++++ mvmsim.c +@@ -7,8 +7,8 @@ + * This file may be freely distributed. Please mail improvements to the author. + * + *******************************************************************************/ +-#include <time.h> + #include <stdio.h> ++#include <time.h> + #include <math.h> + #include "arg.h" + #include "memalloc.h" |