On Oct 5, 1:25 am, Murat Can ALPAY <[email protected]> wrote: > I think this is the relavent part of the config.log : > configure:5551: gcc -std=gnu99 -o conftest -g -O2 -pthread > -I/usr/local/include -I/usr/local/include -L/usr/local/lib conftest.c > -levent >&5 > In file included from /usr/include/inttypes.h:688, > from /usr/include/stdint.h:18, > from /usr/local/include/event.h:170, > from conftest.c:20: > /usr/local/lib/gcc/ia64-hp-hpux11.23/3.4.3/include/wchar.h:134: error: parse > error before "va_list" > /usr/local/lib/gcc/ia64-hp-hpux11.23/3.4.3/include/wchar.h:135: error: parse > error before "va_list" > /usr/local/lib/gcc/ia64-hp-hpux11.23/3.4.3/include/wchar.h:136: error: parse > error before "va_list"
This says your compiler can't parse its headers. I cannot tell you how to fix this other than to try to compile that standalone prog and maybe try to include stdarg.h before event.h -- I'd kind of hope that wouldn't work, but stdarg.h is probably included from stdio.h and someone near HP or gcc probably doesn't expect anyone to write c without stdio.h.
