From: stolz Date: Thu, 9 Oct 2003 13:59:33 +0000 (+0000) Subject: [project @ 2003-10-09 13:59:33 by stolz] X-Git-Tag: Approx_11550_changesets_converted~382 X-Git-Url: http://git.megacz.com/?p=ghc-hetmet.git;a=commitdiff_plain;h=6432be6834f9009e85aa89bdf9ab72edda16a976 [project @ 2003-10-09 13:59:33 by stolz] FreeBSD 4.X has an emtpy wctype.h, so test one of the affected functions in Unicode.hsc if it's really there. --- diff --git a/configure.ac b/configure.ac index 1fdfd12..a5e4c4b 100644 --- a/configure.ac +++ b/configure.ac @@ -1134,7 +1134,11 @@ AC_CHECK_LIB(iberty, xmalloc) AC_CHECK_LIB(bfd, bfd_init) dnl ** check for wide-char classifications -AC_CHECK_HEADERS(wctype.h) +dnl FreeBSD has an emtpy wctype.h, so test one of the affected +dnl functions if it's really there. +AC_CHECK_HEADERS(wctype.h, + AC_CHECK_FUNCS(iswspace) +) dnl ** check for readline, for Hugs and hslibs' Readline dnl ncurses supersedes termcap and curses, but for compatibility,