summaryrefslogtreecommitdiff
path: root/gdk/gdki18n.h
diff options
context:
space:
mode:
authorOwen Taylor <owt1@cornell.edu>1998-02-10 18:18:19 +0000
committerOwen Taylor <otaylor@src.gnome.org>1998-02-10 18:18:19 +0000
commit13179d42a0d2449e53c19351ca18168f333509a7 (patch)
tree7a89f103e881bfc13426b6787d7d3a07f3c01e0d /gdk/gdki18n.h
parent6898536a026027839cf1f6662f30f793dbe4e8d3 (diff)
downloadgtk+-13179d42a0d2449e53c19351ca18168f333509a7.tar.gz
Add check to see if the C library's iswalnum can actually be used. (Not
Tue Feb 10 13:04:36 1998 Owen Taylor <owt1@cornell.edu> * configure.in: Add check to see if the C library's iswalnum can actually be used. (Not true for Linux libc-5.4.38)
Diffstat (limited to 'gdk/gdki18n.h')
-rw-r--r--gdk/gdki18n.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdk/gdki18n.h b/gdk/gdki18n.h
index f1625a8f5b..11e4fc92d9 100644
--- a/gdk/gdki18n.h
+++ b/gdk/gdki18n.h
@@ -145,7 +145,7 @@ extern int _g_mbtowc (wchar_t *wstr, const char *str, size_t len);
#endif /* X_LOCALE */
-#if (defined(HAVE_WCTYPE_H) || defined(HAVE_WCHAR_H)) && !defined(X_LOCALE)
+#if !defined(HAVE_BROKEN_WCTYPE) && (defined(HAVE_WCTYPE_H) || defined(HAVE_WCHAR_H)) && !defined(X_LOCALE)
# ifdef HAVE_WCTYPE_H
# include <wctype.h>
# else