diff options
author | tron <tron@pkgsrc.org> | 2006-06-30 18:52:41 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2006-06-30 18:52:41 +0000 |
commit | 2bf84af07f381ae5c6f8cbd6333af4d5989e931f (patch) | |
tree | 343d83bfd1a5f9e97c2fe545383af3fd1e0ce980 /time/glclock | |
parent | 057ec66619924f57a3c6ce598a34ff3c54c33216 (diff) | |
download | pkgsrc-2bf84af07f381ae5c6f8cbd6333af4d5989e931f.tar.gz |
A missing forward declarations of global functions to make this
build with GCC 4.x.
Diffstat (limited to 'time/glclock')
-rw-r--r-- | time/glclock/distinfo | 3 | ||||
-rw-r--r-- | time/glclock/patches/patch-ac | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/time/glclock/distinfo b/time/glclock/distinfo index 377af0897fe..f6ee8ff7636 100644 --- a/time/glclock/distinfo +++ b/time/glclock/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.5 2005/02/23 19:14:54 wiz Exp $ +$NetBSD: distinfo,v 1.6 2006/06/30 18:52:41 tron Exp $ SHA1 (glclock-6.0b6.0.tar.gz) = e276a516d543c9a6c04f06cfa046f89a476a8685 RMD160 (glclock-6.0b6.0.tar.gz) = f0bd207a47a01e3dc3d3da5b107b168a3210d2a3 Size (glclock-6.0b6.0.tar.gz) = 811803 bytes SHA1 (patch-aa) = 388d8c9e3236f377912dd6261af50cd42064eb22 SHA1 (patch-ab) = 8d4f12c9948d703e4fbff68282388efc7a352f59 +SHA1 (patch-ac) = d06a44d725820c2988888665c4d5dd75161525b8 diff --git a/time/glclock/patches/patch-ac b/time/glclock/patches/patch-ac new file mode 100644 index 00000000000..d0b40e5a778 --- /dev/null +++ b/time/glclock/patches/patch-ac @@ -0,0 +1,14 @@ +$NetBSD: patch-ac,v 1.1 2006/06/30 18:52:41 tron Exp $ + +--- MString.cpp.orig 2000-06-22 15:58:41.000000000 +0100 ++++ MString.cpp 2006-06-30 19:50:30.000000000 +0100 +@@ -1,6 +1,9 @@ + + #include "MString.H" + ++String Left(const String &, int); ++String Mid(String, int, int); ++String Right(const String &, int); + + // コンストラクタ + String::String(int n) |