diff options
author | Johan van Selst <johans@FreeBSD.org> | 2009-03-06 12:04:11 +0000 |
---|---|---|
committer | Johan van Selst <johans@FreeBSD.org> | 2009-03-06 12:04:11 +0000 |
commit | ec2d095bd091c2912068bffa20155527f756b57f (patch) | |
tree | c763a43d7fe92b28cdf6e5904f10ff6e66c792c3 /security/ike | |
parent | c99d0d73375c262760701431d7a9cd4e52beafbb (diff) |
- Update bison to 2.4.1, see announcements for important changes:
http://lists.gnu.org/archive/html/bug-bison/2008-11/msg00000.html
http://lists.gnu.org/archive/html/bug-bison/2008-12/msg00000.html
- Take over bison maintainership - as approved by portmgr (marcus)
- Add patches for ports to compile with new bison:
Replace %{ .. %} with %code { .. } where required
and accommodate stricter typing requirements
Thanks to pav for an exp-run on pointyhat
PR: ports/131640
Approved by: portmgr (pav)
Notes
Notes:
svn path=/head/; revision=229566
Diffstat (limited to 'security/ike')
-rw-r--r-- | security/ike/files/patch-source_iked_conf.parse.yy | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/security/ike/files/patch-source_iked_conf.parse.yy b/security/ike/files/patch-source_iked_conf.parse.yy new file mode 100644 index 000000000000..437ff8aaf213 --- /dev/null +++ b/security/ike/files/patch-source_iked_conf.parse.yy @@ -0,0 +1,20 @@ +--- source/iked/conf.parse.yy.orig 2008-06-10 04:24:20.000000000 +0200 ++++ source/iked/conf.parse.yy 2009-03-06 11:40:56.000000000 +0100 +@@ -43,7 +43,7 @@ + %defines + %define "parser_class_name" "conf_parser" + +-%{ ++%code requires { + + #include <string> + +@@ -51,7 +51,7 @@ + + typedef class _IKED IKED; + +-%} ++} + + // The parsing context. + %parse-param { IKED & iked } |