pkgsrc/devel/ragel/patches/patch-ragel_javacodegen.cpp
rodent a1d685302f Update to latest release, 6.9. Fix HOMEPAGE and MASTER_SITES. Some patches
were applied upstream, so remove. Comment, update, and defuzz remaining ones.

Ragel 6.9 - Oct 13, 2014
========================
 -updated command-line synopsis
 -ocaml: fix missing semicolon
 -ocaml: support -G1
 -ocaml: choose a unique name for type state
 -ruby: reduce the amount of calls to GET_WIDE_KEY()
 -union test case: warning fix
 -omit line directives around expression-oriented write statements
 -use AS_IF and test command to check if the DIST file is present
 -added missing std:: using
 -go: added '//line' directive support

Ragel 6.8 - Feb 11, 2013
========================

 -The -G2 code generator for Go1 was rewritten. Table, flat and switch-based
  code generators were added. (Anton Ageev)
 -The CXXFLAGS variable is not longer set in the configure script.
2015-03-27 03:50:55 +00:00

14 lines
371 B
C++

$NetBSD: patch-ragel_javacodegen.cpp,v 1.2 2015/03/27 03:50:55 rodent Exp $
Make sure setiosflags is visible in the default scope.
--- ragel/javacodegen.cpp.orig 2013-06-07 15:59:16.000000000 +0000
+++ ragel/javacodegen.cpp
@@ -42,6 +42,7 @@
using std::setw;
using std::ios;
+using std::setiosflags;
using std::ostringstream;
using std::string;
using std::cerr;