Hi, One of the examples in the Boling book has lines in the resource file that look like this :
aboutbox DIALOG discardable 10, 10, 132, 40 The problem is that binutils's windres appears to expect all the keywords such as DISCARABLE to be in upper case. A trivial fix for src/binutils/binutils/rclex.l is below. Obviously this fixes only that keyword, I'd expect all of them need to be treated in the same way. This looks pretty lame, there must be a reason why this isn't implemented like this to begin with. Does anyone see a reason ? Thanks, Danny dannypc: {75} svn diff rclex.l Index: rclex.l =================================================================== --- rclex.l (revision 819) +++ rclex.l (working copy) @@ -151,7 +151,7 @@ "IMPURE" { MAYBE_RETURN (IMPURE); } "PRELOAD" { MAYBE_RETURN (PRELOAD); } "LOADONCALL" { MAYBE_RETURN (LOADONCALL); } -"DISCARDABLE" { MAYBE_RETURN (DISCARDABLE); } +[dD][iI][sS][cC][aA][rR][dD][aA][bB][lL][eE] { MAYBE_RETURN (DISCARDABLE); } "NOT" { MAYBE_RETURN (NOT); } "BLOCK"[ \t\n]*"\""[^\#\n]*"\"" { -- Danny Backx ; danny.backx - at - scarlet.be ; http://danny.backx.info
signature.asc
Description: This is a digitally signed message part
------------------------------------------------------------------------- Take Surveys. Earn Cash. Influence the Future of IT Join SourceForge.net's Techsay panel and you'll get the chance to share your opinions on IT & business topics through brief surveys - and earn cash http://www.techsay.com/default.php?page=join.php&p=sourceforge&CID=DEVDEV
_______________________________________________ Cegcc-devel mailing list Cegcc-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/cegcc-devel