diff options
author | grant <grant> | 2005-07-29 04:23:53 +0000 |
---|---|---|
committer | grant <grant> | 2005-07-29 04:23:53 +0000 |
commit | 96802dcd68179134bf87e99f4cdc66b6a3837b42 (patch) | |
tree | e8860002b8a06ea1b0ac63a99ced058461e499e2 /devel/cssc/patches | |
parent | ad419d5f497d2c2e2535e06b298cc4ed3419ac4c (diff) | |
download | pkgsrc-96802dcd68179134bf87e99f4cdc66b6a3837b42.tar.gz |
non-void function must return a value.
fixes build with sunpro.
Diffstat (limited to 'devel/cssc/patches')
-rw-r--r-- | devel/cssc/patches/patch-ac | 12 |
1 files changed, 12 insertions, 0 deletions
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; + } + + |