On 10/18/2012 05:41 PM, Jan Holzhueter wrote: > > Hi, > I have a funny problem again: > > /usr/include/sys/mman.h > > defines this: > #ifdef __PRAGMA_REDEFINE_EXTNAME > #pragma redefine_extname getpagesizes getpagesizes2 > #else > #define getpagesizes getpagesizes2 > #endif > > Which if I'm not wrong results in all getpagesizes calls be remapped to > getpagesizes2 which the mapfile of libc does not allow since this is in > version 1.22.5 > > Since I'm not good at this stuff. How do I unset this pragma? > I would guess I should unset it in the code that uses getpagesizes?
try to #define __STDC__ just my wild guess. -- Juraj Lutter <[email protected]> _______________________________________________ maintainers mailing list [email protected] https://lists.opencsw.org/mailman/listinfo/maintainers .:: This mailing list's archive is public. ::.
