Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(486)

Side by Side Diff: m4/tuklib_mbstr.m4

Issue 7109015: Update XZ Utils to 5.0.3 (in deps) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/xz/
Patch Set: Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « dos/config.h ('k') | po/LINGUAS » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(Empty)
1 #
2 # SYNOPSIS
3 #
4 # TUKLIB_MBSTR
5 #
6 # DESCRIPTION
7 #
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-*.
13 #
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.
17 #
18 # COPYING
19 #
20 # Author: Lasse Collin
21 #
22 # This file has been put into the public domain.
23 # You can do whatever you want with this file.
24 #
25
26 AC_DEFUN_ONCE([TUKLIB_MBSTR], [
27 AC_REQUIRE([TUKLIB_COMMON])
28 AC_FUNC_MBRTOWC
29 AC_CHECK_FUNCS([wcwidth])
30 ])dnl
OLDNEW
« no previous file with comments | « dos/config.h ('k') | po/LINGUAS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698