Mercurial > hg > octave-nkf > gnulib-hg
annotate modules/striconveh @ 16681:14592d8d106b
Tests for module 'log2l'.
* modules/log2l-tests: New file.
* tests/test-log2l.c: New file.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sun, 11 Mar 2012 20:50:40 +0100 |
parents | aca88fcb0493 |
children | 1f14c6dd175d |
rev | line source |
---|---|
7882 | 1 Description: |
2 Character set conversion of strings with error handling, uses iconv. | |
3 | |
4 Files: | |
5 lib/striconveh.h | |
6 lib/striconveh.c | |
11476
d053b39f7091
New include file "iconveh.h".
Bruno Haible <bruno@clisp.org>
parents:
10750
diff
changeset
|
7 lib/iconveh.h |
7882 | 8 |
9 Depends-on: | |
10 stdbool | |
11 iconv | |
8604 | 12 iconv_open |
7882 | 13 unistr/u8-prev |
7995
9730f3f14f9d
Rename u8_mbtouc -> u8_mbtouc_unsafe.
Bruno Haible <bruno@clisp.org>
parents:
7936
diff
changeset
|
14 unistr/u8-mbtouc-unsafe |
8576
e2facecc862e
Distinguish invalid and incomplete UTF-8 input, and set errno accordingly.
Bruno Haible <bruno@clisp.org>
parents:
8006
diff
changeset
|
15 unistr/u8-mbtouc |
e2facecc862e
Distinguish invalid and incomplete UTF-8 input, and set errno accordingly.
Bruno Haible <bruno@clisp.org>
parents:
8006
diff
changeset
|
16 unistr/u8-mbtoucr |
e2facecc862e
Distinguish invalid and incomplete UTF-8 input, and set errno accordingly.
Bruno Haible <bruno@clisp.org>
parents:
8006
diff
changeset
|
17 unistr/u8-uctomb |
7882 | 18 strdup |
19 c-strcase | |
7936
b93a4036490a
Optimize the recognition of "UTF-8" strings.
Bruno Haible <bruno@clisp.org>
parents:
7882
diff
changeset
|
20 c-strcaseeq |
10750 | 21 memmove |
7882 | 22 |
23 configure.ac: | |
24 if test $gl_cond_libtool = false; then | |
25 gl_ltlibdeps="$gl_ltlibdeps $LTLIBICONV" | |
26 gl_libdeps="$gl_libdeps $LIBICONV" | |
27 fi | |
28 | |
29 Makefile.am: | |
30 lib_SOURCES += striconveh.h striconveh.c | |
31 if GL_COND_LIBTOOL | |
32 lib_LDFLAGS += $(LTLIBICONV) | |
33 endif | |
34 | |
35 Include: | |
36 "striconveh.h" | |
37 | |
10130
7581db129a32
Mention the link requirements.
Bruno Haible <bruno@clisp.org>
parents:
8604
diff
changeset
|
38 Link: |
7581db129a32
Mention the link requirements.
Bruno Haible <bruno@clisp.org>
parents:
8604
diff
changeset
|
39 $(LTLIBICONV) when linking with libtool, $(LIBICONV) otherwise |
7581db129a32
Mention the link requirements.
Bruno Haible <bruno@clisp.org>
parents:
8604
diff
changeset
|
40 |
7882 | 41 License: |
14504
aca88fcb0493
Relicense some modules under LGPLv2+, for libidn2.
Bruno Haible <bruno@clisp.org>
parents:
11476
diff
changeset
|
42 LGPLv2+ |
7882 | 43 |
44 Maintainer: | |
45 Bruno Haible | |
46 |