ports/lang/spl/files/patch-include_roman__numbers.metaflex
John Marino 3f230752a6 lang/spl: Fix build on modern gcc
I don't know why spl builds on clang but fails on gcc due to a flex
precedence issue.  Rather, I don't know why the flex issue doesn't affect
clang.  There was a patch provided by a fork nearly four years ago that
fixes the gcc build nicely.  The bitbucket issue warns that more eyes
should review the fix though.

Issue 1: roman number II interpreted as I
https://bitbucket.org/kcartmell/marlowe/issue/1/
2014-11-15 11:06:04 +00:00

14 lines
663 B
Text

Replaced roman numeral regular expression to address precedence issue
Issue 1: roman number II interpreted as I
https://bitbucket.org/kcartmell/marlowe/issue/1/
--- include/roman_numbers.metaflex.orig 2001-10-18 12:34:31.000000000 +0000
+++ include/roman_numbers.metaflex
@@ -1,5 +1 @@
-ROMAN_THOUSANDS m+
-ROMAN_HUNDREDS (c(d|m)|dc{0,3}|c{1,3})
-ROMAN_TENS (x(l|c)|lx{0,3}|x{1,3})
-ROMAN_ONES (i(v|x)|vi{0,3}|i{1,3})
-ROMAN_NUMBER {ROMAN_ONES}|{ROMAN_TENS}{ROMAN_ONES}?|{ROMAN_HUNDREDS}{ROMAN_TENS}?{ROMAN_ONES}?|{ROMAN_THOUSANDS}{ROMAN_HUNDREDS}?{ROMAN_TENS}?{ROMAN_ONES}?
+ROMAN_NUMBER M{0,4}(CM|CD|D?C{0,3})(XC|XL|L?X{0,3})(IX|IV|V?I{0,3})