Hi, While compiling Finch/ Pidgin on a recently-installed i386 4.3 OpenBSD system, I encountered an issue where it gave me the following error:
/usr/include/ncurses.h:251: error: conflicting types for `wchar_t' /usr/include/stddef.h:54: error: previous declaration of `wchar_t' /usr/include/ncurses.h:254: error: conflicting types for `wint_t' /usr/include/stddef.h:59: error: previous declaration of `wint_t' After looking at the two files, I noticed that ncurses.h checks for: #ifdef _WCHAR_T ... whereas stddef.h has: #define _WCHAR_T_DEFINED_ And the same thing for wint_t After changing _WCHAR_T to _WCHAR_T_DEFINED_, and _WINT_T to _WINT_T_DEFINED_ in ncurses.h the problem was fixed. And I did a quick grep on /usr/include and at first glance didn't see any other header files that check for _WCHAR_T, so it doesn't seem like changing it to _WCHAR_T_DEFINED_ would break anything... Anyways, as it doesn't seem right to change a common header file such as ncurses.h, I was wondering whether there's something I'm missing? Thanks