diff options
author | panne <unknown> | 2003-08-18 13:15:56 +0000 |
---|---|---|
committer | panne <unknown> | 2003-08-18 13:15:56 +0000 |
commit | fd87c1f8579dd5c118f1867bac42df86bc04ac54 (patch) | |
tree | ccd813fd1dbc31eb906f8eb404f68a84bde60721 /aclocal.m4 | |
parent | ca9f59db55f686347d42e6e5938a24ce21521d2e (diff) | |
download | haskell-fd87c1f8579dd5c118f1867bac42df86bc04ac54.tar.gz |
[project @ 2003-08-18 13:15:53 by panne]
Nuked unused FPTOOLS_REGEX_IN_LIBC test
Diffstat (limited to 'aclocal.m4')
-rw-r--r-- | aclocal.m4 | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/aclocal.m4 b/aclocal.m4 index c339a849e5..4f3259ce01 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -24,28 +24,6 @@ AC_CHECK_DECLS([altzone], [], [],[#if TIME_WITH_SYS_TIME ])# FP_ALTZONE - -dnl *** Does libc contain GNU regex? *** -dnl -AC_DEFUN(FPTOOLS_REGEX_IN_LIBC, -[AC_CACHE_CHECK([for GNU regex in libc], fptools_cv_have_regex, -[AC_TRY_LINK([#if HAVE_UNISTD_H -#include <unistd.h> -#endif -#include <regex.h> -],[ struct re_pattern_buffer patbuf; - re_compile_pattern("",0,&patbuf); - re_search_2 (&patbuf, "", 0, "",0, 0,0,0,0); ], -fptools_cv_have_regex=yes, fptools_cv_have_regex=no)]) -if test "$fptools_cv_have_regex" = yes; then - HaveGNURegex=YES -else - HaveGNURegex=NO -fi -AC_SUBST(HaveGNURegex) -]) - - dnl ** check for leading underscores in symbol names dnl dnl Test for determining whether symbol names have a leading |