+2013-12-23 Jan Djärv <jan.h.d@swipnet.se>
+
+ * conf_post.h: Use unsigned it for bool_bf if GNUSTEP (Bug#16210).
+
2013-12-23 Glenn Morris <rgm@gnu.org>
* lread.c (Fload): Mention load-prefer-newer in doc.
#include <stdbool.h>
-/* The pre-C99 <stdbool.h> emulation doesn't work for bool bitfields. */
-#if __STDC_VERSION__ < 199901
+/* The pre-C99 <stdbool.h> emulation doesn't work for bool bitfields.
+ Nor does compiling Objective-C with standard GCC. */
+#if __STDC_VERSION__ < 199901 || NS_IMPL_GNUSTEP
typedef unsigned int bool_bf;
#else
typedef bool bool_bf;