I get this when compiling vanila 3.0.9 on OS X 10.4.10 (Intel and PPC):
CC main-gcu.c
In file included from main-gcu.c:63:
/usr/include/ncurses.h:335: error: parse error before 'bool'
/usr/include/ncurses.h:337: error: parse error before '_leaveok'
/usr/include/ncurses.h:338: error: parse error before '_scroll'
Looks like it's something to do with stdbool, configure seemed to think it was okay:
checking for dirent.h... yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for an ANSI C-conforming const... yes
Any ideas what to do to fix it?
CC main-gcu.c
In file included from main-gcu.c:63:
/usr/include/ncurses.h:335: error: parse error before 'bool'
/usr/include/ncurses.h:337: error: parse error before '_leaveok'
/usr/include/ncurses.h:338: error: parse error before '_scroll'
Looks like it's something to do with stdbool, configure seemed to think it was okay:
checking for dirent.h... yes
checking for stdbool.h that conforms to C99... yes
checking for _Bool... yes
checking for an ANSI C-conforming const... yes
Any ideas what to do to fix it?
Comment