# New Ticket Created by "Senaka Fernando" # Please include the string: [perl #52886] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=52886 >
Including gmp.h causes build break in C++ build on Ubuntu Gutsy. The problem is some down stream header adding libintl.h, which gives trouble. Thus, it seems that, the hack below does the trick. #define _LIBINTL_H # include <gmp.h> #undef _LIBINTL_H Anyhow, this issue wasn't there in an earlier checkout that I obtained around 2 weeks back. The break crops up with bigint.c and it seems that bigint.pmc which is used in generating this file hasn't been updated during the last two week period. Thus, I suspect that this is a side effect of some other check-in within the last two week period. This has something to do with PARROT_HAS_GMP. Regards, Senaka