K 10 svn:author V 6 rakuco K 8 svn:date V 27 2015-12-05T01:08:22.132134Z K 7 svn:log V 765 Depend on flex and bison from ports on 9. According to portsmon, benchmarks/fio's build is currently broken on 9 after the update to 2.2.11: lex: can't open lex.yy.c with a verbose build it's possible to see that this is because base's flex on 9 is too old and does not support "-o foo", it requires "-ofoo". Depending on flex from ports to fix the build is not enough, as then the yacc call fails: /usr/bin/yacc -o y.tab.c -l -d -b y exp/expression-parser.y yacc: e - line 68 of "exp/expression-parser.y", syntax error %parse-param { long long *result } ^ Makefile:312: recipe for target 'y.tab.c' failed Fix it by depending on both textproc/flex and devel/bison when the versions in base are too old. PR: 205022 Approved by: bapt (maintainer) END