diff options
author | Frank Ch. Eigler <fche@redhat.com> | 2004-06-09 19:04:56 +0000 |
---|---|---|
committer | Frank Ch. Eigler <fche@gcc.gnu.org> | 2004-06-09 19:04:56 +0000 |
commit | dc88d66f1aa98873becd21900046cae7bccbc14c (patch) | |
tree | 45d762f48cc30af98123706913cfa76316d87f76 /libmudflap/config.h.in | |
parent | 0e5b7cfaabe3016b8fdbdb58306797198348aec8 (diff) | |
download | gcc-dc88d66f1aa98873becd21900046cae7bccbc14c.tar.gz |
ctype support.
2004-06-09 Frank Ch. Eigler <fche@redhat.com>
ctype support.
* configure.in: Look for ctype header and glibc implementation.
* mf-hooks2.c (__ctype_{b,toupper,tolower}_loc): Sample ctype
array hooks for glibc 2.3.
* mf-runtime.h.in: Wrap them.
* mf-runtime.c (__mf_init): Leave marker regarding other ctype
implementations.
* testsuite/libmudflap.c/pass47-frag.c: New test.
* configure, config.h.in: Regenerated.
From-SVN: r82848
Diffstat (limited to 'libmudflap/config.h.in')
-rw-r--r-- | libmudflap/config.h.in | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libmudflap/config.h.in b/libmudflap/config.h.in index a9c7ed65dfc..bdcd239e59c 100644 --- a/libmudflap/config.h.in +++ b/libmudflap/config.h.in @@ -6,6 +6,9 @@ /* Define to 1 if you have the `backtrace_symbols' function. */ #undef HAVE_BACKTRACE_SYMBOLS +/* Define to 1 if you have the <ctype.h> header file. */ +#undef HAVE_CTYPE_H + /* Define to 1 if you have the <dlfcn.h> header file. */ #undef HAVE_DLFCN_H @@ -108,6 +111,15 @@ /* Define to 1 if you have the <unistd.h> header file. */ #undef HAVE_UNISTD_H +/* Define to 1 if you have the `__ctype_b_loc' function. */ +#undef HAVE___CTYPE_B_LOC + +/* Define to 1 if you have the `__ctype_tolower_loc' function. */ +#undef HAVE___CTYPE_TOLOWER_LOC + +/* Define to 1 if you have the `__ctype_toupper_loc' function. */ +#undef HAVE___CTYPE_TOUPPER_LOC + /* Name of package */ #undef PACKAGE |