From: ross Date: Fri, 23 Jul 2004 15:32:00 +0000 (+0000) Subject: [project @ 2004-07-23 15:31:58 by ross] X-Git-Tag: Initial_conversion_from_CVS_complete~1773 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=ccc28c51f1118fe4b82e97bd377cb1c0a08f767e;p=ghc-hetmet.git [project @ 2004-07-23 15:31:58 by ross] To make Text.Regex.Posix work with Hugs, move cbits/regex/regex.h under include, where Hugs can find it. --- diff --git a/configure.ac b/configure.ac index 92757e4..df1ef00 100644 --- a/configure.ac +++ b/configure.ac @@ -1032,7 +1032,7 @@ AC_CHECK_HEADER(malloc.h,[AC_CHECK_FUNCS(valloc)]) dnl ** check for POSIX regex HavePosixRegex=NO -AC_CHECK_HEADERS(regex.h,[AC_CHECK_FUNC(regcomp, [HavePosixRegex=YES])]) +AC_CHECK_HEADERS(regex.h,[AC_CHECK_FUNCS(regcomp, [HavePosixRegex=YES])]) AC_SUBST(HavePosixRegex) dnl ** how do we get a timezone name, and UTC offset ?