Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/unicase/base @ 16364:89227b989588
fatal-signal: use C prototypes (with explicit void).
* lib/fatal-signal.c (uninstall_handlers, install_handlers)
(init_fatal_signal_set, block_fatal_signals): Fix signatures.
author | Akim Demaille <demaille@gostai.com> |
---|---|
date | Wed, 08 Feb 2012 10:36:20 +0100 |
parents | 86634e33e086 |
children |
rev | line source |
---|---|
11140 | 1 Description: |
2 Base layer for Unicode character case mappings. | |
3 | |
4 Files: | |
13354
86634e33e086
New module 'libunistring-optional'.
Bruno Haible <bruno@clisp.org>
parents:
11302
diff
changeset
|
5 lib/unicase.in.h |
86634e33e086
New module 'libunistring-optional'.
Bruno Haible <bruno@clisp.org>
parents:
11302
diff
changeset
|
6 m4/libunistring-base.m4 |
11140 | 7 |
8 Depends-on: | |
9 unitypes | |
11302 | 10 uninorm/base |
11 stdbool | |
11140 | 12 |
13 configure.ac: | |
13354
86634e33e086
New module 'libunistring-optional'.
Bruno Haible <bruno@clisp.org>
parents:
11302
diff
changeset
|
14 gl_LIBUNISTRING_LIBHEADER([0.9.1], [unicase.h]) |
11140 | 15 |
16 Makefile.am: | |
13354
86634e33e086
New module 'libunistring-optional'.
Bruno Haible <bruno@clisp.org>
parents:
11302
diff
changeset
|
17 BUILT_SOURCES += $(LIBUNISTRING_UNICASE_H) |
86634e33e086
New module 'libunistring-optional'.
Bruno Haible <bruno@clisp.org>
parents:
11302
diff
changeset
|
18 |
86634e33e086
New module 'libunistring-optional'.
Bruno Haible <bruno@clisp.org>
parents:
11302
diff
changeset
|
19 unicase.h: unicase.in.h |
86634e33e086
New module 'libunistring-optional'.
Bruno Haible <bruno@clisp.org>
parents:
11302
diff
changeset
|
20 $(AM_V_GEN)rm -f $@-t $@ && \ |
86634e33e086
New module 'libunistring-optional'.
Bruno Haible <bruno@clisp.org>
parents:
11302
diff
changeset
|
21 { echo '/* DO NOT EDIT! GENERATED AUTOMATICALLY! */'; \ |
86634e33e086
New module 'libunistring-optional'.
Bruno Haible <bruno@clisp.org>
parents:
11302
diff
changeset
|
22 cat $(srcdir)/unicase.in.h; \ |
86634e33e086
New module 'libunistring-optional'.
Bruno Haible <bruno@clisp.org>
parents:
11302
diff
changeset
|
23 } > $@-t && \ |
86634e33e086
New module 'libunistring-optional'.
Bruno Haible <bruno@clisp.org>
parents:
11302
diff
changeset
|
24 mv -f $@-t $@ |
86634e33e086
New module 'libunistring-optional'.
Bruno Haible <bruno@clisp.org>
parents:
11302
diff
changeset
|
25 MOSTLYCLEANFILES += unicase.h unicase.h-t |
11140 | 26 |
27 Include: | |
28 "unicase.h" | |
29 | |
30 License: | |
31 LGPL | |
32 | |
33 Maintainer: | |
34 Bruno Haible | |
35 |