src/packfile.c:765:54: error: invalid digit "8" in octal constant
src/packfile.c:1059:30: error: invalid digit "8" in octal constant

This is because of the macro:

        #define PARROT_PBC_MINOR 08

in include/parrot/pbcversion.h, which gets generated from the entry:

        3.08    2007.12.12      allison added addhandler_p opcode

in PBC_COMPAT.

The leading zero, of course, makes the number look octal to GCC, which rightly 
says "Hey, you can't have an 8 in an octal number."


Fixed in r23822.

-- c

Reply via email to