GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / tools / misc / xz / m4 / tuklib_mbstr.m4
blob991be9b9cc28b7409ea484b8f94b48028ae7e081
2 # SYNOPSIS
4 #   TUKLIB_MBSTR
6 # DESCRIPTION
8 #   Check if multibyte and wide character functionality is available
9 #   for use by tuklib_mbstr_* functions. If not enough multibyte string
10 #   support is available in the C library, the functions keep working
11 #   with the assumption that all strings are a in single-byte character
12 #   set without combining characters, e.g. US-ASCII or ISO-8859-*.
14 #   This .m4 file and tuklib_mbstr.h are common to all tuklib_mbstr_*
15 #   functions, but each function is put into a separate .c file so
16 #   that it is possible to pick only what is strictly needed.
18 # COPYING
20 #   Author: Lasse Collin
22 #   This file has been put into the public domain.
23 #   You can do whatever you want with this file.
26 AC_DEFUN_ONCE([TUKLIB_MBSTR], [
27 AC_REQUIRE([TUKLIB_COMMON])
28 AC_FUNC_MBRTOWC
29 AC_CHECK_FUNCS([wcwidth])
30 ])dnl