+2009-03-09 11:49 +0100 Rocco Rutte <pdmef@gmx.net> (bcf1e9692caf)
+
+ * init.h: Fix 11cd72da743a
+
+2009-03-09 11:30 +0100 Rocco Rutte <pdmef@gmx.net> (11cd72da743a)
+
+ * ChangeLog, init.h: Sort SSL-related variables, see #3191.
+
2009-03-09 11:11 +0100 Rocco Rutte <pdmef@gmx.net> (a96d427b203b)
* hash.c, hash.h, init.c, mh.c, thread.c: Restore $reverse_alias
#include <limits.h>
#include <stdarg.h>
#include <signal.h>
+/* On OS X 10.5.x, wide char functions are inlined by default breaking
+ * --without-wc-funcs compilation
+ */
+#ifdef __APPLE_CC__
+#define _DONT_USE_CTYPE_INLINE_
+#endif
#ifdef HAVE_WCHAR_H
# include <wchar.h>
#endif
#undef DEBUG
+/* On OS X 10.5.x, wide char functions are inlined by default breaking
+ * --without-wc-funcs compilation
+ */
+#ifdef __APPLE_CC__
+#define _DONT_USE_CTYPE_INLINE_
+#endif
+
#if (defined(HAVE_ALLOCA_H) && !defined(_AIX))
# include <alloca.h>
#endif
/* For platform which support the ISO C amendement 1 functionality we
support user defined character classes. */
-#if defined _LIBC || (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H)
-# include <wctype.h>
+#ifdef HAVE_WCHAR_H
# include <wchar.h>
#endif
+#if defined(HAVE_WCTYPE_H) && defined(HAVE_WC_FUNCS)
+# include <wctype.h>
+#endif
/* This is for other GNU distributions with internationalized messages. */
#if HAVE_LIBINTL_H || defined (_LIBC)