From 7e6609f1514aea0893dbe9b26b069bb734fccea1 Mon Sep 17 00:00:00 2001 From: sof Date: Mon, 13 Oct 2003 03:25:38 +0000 Subject: [PATCH] [project @ 2003-10-13 03:25:38 by sof] use AC_CHECK_HEADERS() when looking for regex.h --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 40ec87f..a22283d 100644 --- a/configure.ac +++ b/configure.ac @@ -881,7 +881,7 @@ AC_CHECK_HEADER(malloc.h,[AC_CHECK_FUNCS(valloc)]) dnl ** check for POSIX regex HavePosixRegex=NO -AC_CHECK_HEADER(regex.h,[AC_CHECK_FUNC(regcomp, [HavePosixRegex=YES])]) +AC_CHECK_HEADERS(regex.h,[AC_CHECK_FUNC(regcomp, [HavePosixRegex=YES])]) AC_SUBST(HavePosixRegex) dnl ** how do we get a timezone name, and UTC offset ? -- 1.7.10.4