diff options
author | Zack Weinberg <zack@codesourcery.com> | 2003-04-12 18:07:06 +0000 |
---|---|---|
committer | Zack Weinberg <zack@gcc.gnu.org> | 2003-04-12 18:07:06 +0000 |
commit | 2bd020439ad63aa78333cf0e66f6b8ca0b63685c (patch) | |
tree | 5dc781e893303cba5531a0313f6b03e3fbcd2c77 /gcc/config.in | |
parent | 48ed72a399f21ba568bb51bdc70829cbace8ebff (diff) | |
download | gcc-2bd020439ad63aa78333cf0e66f6b8ca0b63685c.tar.gz |
configure.in: Check for wchar.h, mbstowcs, and wcswidth.
* configure.in: Check for wchar.h, mbstowcs, and wcswidth.
* configure, config.in: Regenerate.
* intl.c (gcc_gettext_width): New function.
* intl.h: Prototype it.
cp:
* call.c (print_z_candidates): Use gcc_gettext_width, not
strlen, to determine how much padding to use.
From-SVN: r65517
Diffstat (limited to 'gcc/config.in')
-rw-r--r-- | gcc/config.in | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gcc/config.in b/gcc/config.in index 1f190e2d3ed..ba0366fd3d9 100644 --- a/gcc/config.in +++ b/gcc/config.in @@ -162,6 +162,9 @@ /* Define if you have the lstat function. */ #undef HAVE_LSTAT +/* Define if you have the mbstowcs function. */ +#undef HAVE_MBSTOWCS + /* Define if you have the mempcpy function. */ #undef HAVE_MEMPCPY @@ -216,6 +219,9 @@ /* Define if you have the tsearch function. */ #undef HAVE_TSEARCH +/* Define if you have the wcswidth function. */ +#undef HAVE_WCSWIDTH + /* Define if you have the <argz.h> header file. */ #undef HAVE_ARGZ_H @@ -279,6 +285,9 @@ /* Define if you have the <unistd.h> header file. */ #undef HAVE_UNISTD_H +/* Define if you have the <wchar.h> header file. */ +#undef HAVE_WCHAR_H + /* Define to enable the use of a default linker. */ #undef DEFAULT_LINKER |