K 10 svn:author V 4 rene K 8 svn:date V 27 2020-10-21T20:19:48.098218Z K 7 svn:log V 511 graphics/dspdfviewer: simplify logic for -Wno-error=extra-semi-stmt I first bogusly added OSVERSION < 1300000 at the end, but in hindsight and from looking at svnweb the version logic after 11.3 EOL is v >= 1300014 || (v in 1104000 .. 1200000) || v >= 1201000 == (v in 1104000 .. 1200000) || v >= 1201000 == (v >= 1200000 && v < 1201000) So the port should not relax the check on (early) 12.0, which we can as well leave out. While here, add a note about upstream #191 still being open. Phabricator: D26646 END