Removed superfluous main() from AC_TRY_COMPILE.

This commit is contained in:
Wayne Davison 2005-08-17 17:21:13 +00:00
parent de215777ed
commit 036f36af8d
1 changed files with 1 additions and 3 deletions

View File

@ -2076,15 +2076,13 @@ AC_ARG_ENABLE(multibyte,
# include <locale.h>
#endif
], [
int main() {
#if defined(HAVE_WCHAR_H) && defined(HAVE_WCTOMB) \
&& defined(HAVE_MBRTOWC) && defined(HAVE_WCRTOMB) \
&& defined (__STDC_ISO_10646__)
return 0;
/* All is well */
#else
# error Not supported.
#endif
}
],
zsh_cv_c_zle_unicode_support=yes,
zsh_cv_c_zle_unicode_support=no)])