diff options
author | grant <grant@pkgsrc.org> | 2005-07-29 04:23:53 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2005-07-29 04:23:53 +0000 |
commit | b95012fc9d4fcf106f77bbe8a096363e25137400 (patch) | |
tree | e8860002b8a06ea1b0ac63a99ced058461e499e2 /devel/cssc | |
parent | cb77acea691a8e471f58666a27da474cf871fe0b (diff) | |
download | pkgsrc-b95012fc9d4fcf106f77bbe8a096363e25137400.tar.gz |
non-void function must return a value.
fixes build with sunpro.
Diffstat (limited to 'devel/cssc')
-rw-r--r-- | devel/cssc/distinfo | 3 | ||||
-rw-r--r-- | devel/cssc/patches/patch-ac | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/devel/cssc/distinfo b/devel/cssc/distinfo index 9a4704ec1d2..04ec07ccba4 100644 --- a/devel/cssc/distinfo +++ b/devel/cssc/distinfo @@ -1,7 +1,8 @@ -$NetBSD: distinfo,v 1.8 2005/03/31 02:17:02 seb Exp $ +$NetBSD: distinfo,v 1.9 2005/07/29 04:23:53 grant Exp $ SHA1 (CSSC-1.0.1.tar.gz) = 17ef27a67349dc40577cc09ff10209630efc383b RMD160 (CSSC-1.0.1.tar.gz) = c93d7b9c29c6d5ca77bd98188251cfe95384c6a5 Size (CSSC-1.0.1.tar.gz) = 698524 bytes SHA1 (patch-aa) = 3f29e0b6835b85129088e36e3fd415a9535772df SHA1 (patch-ab) = 5f77a20b1e54c4989a3770672c4fcc207dde4817 +SHA1 (patch-ac) = 945a5c992f6ed7ffb94d15de9c2724e9afc4c421 diff --git a/devel/cssc/patches/patch-ac b/devel/cssc/patches/patch-ac new file mode 100644 index 00000000000..ffebcb00335 --- /dev/null +++ b/devel/cssc/patches/patch-ac @@ -0,0 +1,12 @@ +$NetBSD: patch-ac,v 1.3 2005/07/29 04:23:53 grant Exp $ + +--- sf-val.cc.orig 2004-10-10 22:19:16.000000000 +1000 ++++ sf-val.cc +@@ -109,6 +109,7 @@ sccs_file::validate_isomorphism() const + static bool + validate_substituted_flags_list(const mylist<char> entries) + { ++ return true; + } + + |