Mercurial > hg > octave-shane > gnulib-hg
annotate NEWS @ 9623:69d9307c0aa0
Convert strcasestr module to use Two-Way algorithm.
* modules/strcasestr-simple: New module, based on the old
strcasestr, but with Two-Way rather than KMP.
* modules/strcasestr (Depends-on): Change to strcasestr-simple.
* lib/string.in.h (rpl_strcasestr): Declare.
* m4/strcasestr.m4 (gl_FUNC_STRCASESTR): Check for linear
performance.
* lib/strcasestr.c (strcasestr): Simplify, and avoid malloc.
* modules/string (Makefile.am): Support strcasestr.
* m4/string_h.m4 (gl_HEADER_STRING_H_DEFAULTS): Likewise.
* modules/strcasestr-tests (Depends-on): Check for alarm.
* tests/test-strcasestr.c: Augment test.
* lib/str-two-way.h: Clean up stray macro.
* NEWS: Document new module.
* MODULES.html.sh (string handling): Likewise.
* doc/functions/strcasestr.texi: New file.
* doc/gnulib.texi (Function Substitutes): New node. Move memmem
here, since it is not a POSIX function.
Signed-off-by: Eric Blake <ebb9@byu.net>
author | Eric Blake <ebb9@byu.net> |
---|---|
date | Thu, 10 Jan 2008 22:22:51 -0700 |
parents | d309fd90fbf3 |
children | a113e473cc98 |
rev | line source |
---|---|
8435
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
1 Important notes |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
2 --------------- |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
3 |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
4 User visible incompatible changes |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
5 --------------------------------- |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
6 |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
7 Date Modules Changes |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
8 |
9623
69d9307c0aa0
Convert strcasestr module to use Two-Way algorithm.
Eric Blake <ebb9@byu.net>
parents:
9592
diff
changeset
|
9 2008-01-14 strcasestr This module now replaces worst-case inefficient |
69d9307c0aa0
Convert strcasestr module to use Two-Way algorithm.
Eric Blake <ebb9@byu.net>
parents:
9592
diff
changeset
|
10 implementations; clients that use controlled |
69d9307c0aa0
Convert strcasestr module to use Two-Way algorithm.
Eric Blake <ebb9@byu.net>
parents:
9592
diff
changeset
|
11 needles and thus do not care about worst-case |
69d9307c0aa0
Convert strcasestr module to use Two-Way algorithm.
Eric Blake <ebb9@byu.net>
parents:
9592
diff
changeset
|
12 efficiency should use the new strcasestr-simple |
69d9307c0aa0
Convert strcasestr module to use Two-Way algorithm.
Eric Blake <ebb9@byu.net>
parents:
9592
diff
changeset
|
13 module instead for smaller code size. |
69d9307c0aa0
Convert strcasestr module to use Two-Way algorithm.
Eric Blake <ebb9@byu.net>
parents:
9592
diff
changeset
|
14 |
9592
d309fd90fbf3
gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9591
diff
changeset
|
15 2008-01-09 alloca-opt Now defines HAVE_ALLOCA_H only when the system |
d309fd90fbf3
gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9591
diff
changeset
|
16 supplies an <alloca.h>. Gnulib-using code is now |
d309fd90fbf3
gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9591
diff
changeset
|
17 expected to include <alloca.h> unconditionally. |
d309fd90fbf3
gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9591
diff
changeset
|
18 Non-gnulib-using code can continue to include |
d309fd90fbf3
gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9591
diff
changeset
|
19 <alloca.h> only if HAVE_ALLOCA_H is defined. |
d309fd90fbf3
gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9591
diff
changeset
|
20 |
9591 | 21 2008-01-08 memmem This module now replaces worst-case inefficient |
22 implementations; clients that use controlled | |
23 needles and thus do not care about worst-case | |
24 efficiency should use the new memmem-simple | |
25 module instead for smaller code size. | |
26 | |
9545
c596ca4e89b4
Split setenv module into setenv and unsetenv. Get rid of setenv.h.
Bruno Haible <bruno@clisp.org>
parents:
9498
diff
changeset
|
27 2007-12-24 setenv The include file is changed from "setenv.h" to |
c596ca4e89b4
Split setenv module into setenv and unsetenv. Get rid of setenv.h.
Bruno Haible <bruno@clisp.org>
parents:
9498
diff
changeset
|
28 <stdlib.h>. Also, the unsetenv function is no |
c596ca4e89b4
Split setenv module into setenv and unsetenv. Get rid of setenv.h.
Bruno Haible <bruno@clisp.org>
parents:
9498
diff
changeset
|
29 longer declared in this module; use the 'unsetenv' |
c596ca4e89b4
Split setenv module into setenv and unsetenv. Get rid of setenv.h.
Bruno Haible <bruno@clisp.org>
parents:
9498
diff
changeset
|
30 module if you need it. |
c596ca4e89b4
Split setenv module into setenv and unsetenv. Get rid of setenv.h.
Bruno Haible <bruno@clisp.org>
parents:
9498
diff
changeset
|
31 |
9498
a2c450a3023c
Move declaration of getpagesize() from getpagesize.h to unistd.h.
Bruno Haible <bruno@clisp.org>
parents:
9496
diff
changeset
|
32 2007-12-03 getpagesize The include file is changed from "getpagesize.h" |
a2c450a3023c
Move declaration of getpagesize() from getpagesize.h to unistd.h.
Bruno Haible <bruno@clisp.org>
parents:
9496
diff
changeset
|
33 to <unistd.h>. |
a2c450a3023c
Move declaration of getpagesize() from getpagesize.h to unistd.h.
Bruno Haible <bruno@clisp.org>
parents:
9496
diff
changeset
|
34 |
9496
d7da1f241448
Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
Bruno Haible <bruno@clisp.org>
parents:
9314
diff
changeset
|
35 2007-12-03 strcase The include file is changed from <string.h> to |
d7da1f241448
Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
Bruno Haible <bruno@clisp.org>
parents:
9314
diff
changeset
|
36 <strings.h>. |
d7da1f241448
Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
Bruno Haible <bruno@clisp.org>
parents:
9314
diff
changeset
|
37 |
9314
bb3874ba31fd
Mention the license change.
Bruno Haible <bruno@clisp.org>
parents:
9171
diff
changeset
|
38 2007-10-07 most modules The license for most modules has changed from |
bb3874ba31fd
Mention the license change.
Bruno Haible <bruno@clisp.org>
parents:
9171
diff
changeset
|
39 GPLv2+ to GPLv3+, and from LGPLv2+ to LGPLv3+. |
bb3874ba31fd
Mention the license change.
Bruno Haible <bruno@clisp.org>
parents:
9171
diff
changeset
|
40 A few modules are still under LGPLv2+; see the |
bb3874ba31fd
Mention the license change.
Bruno Haible <bruno@clisp.org>
parents:
9171
diff
changeset
|
41 module description for the applicable license. |
bb3874ba31fd
Mention the license change.
Bruno Haible <bruno@clisp.org>
parents:
9171
diff
changeset
|
42 |
9171
87d1523f0988
Let linebreak rely on uniwidth/width.
Bruno Haible <bruno@clisp.org>
parents:
9169
diff
changeset
|
43 2007-09-01 linebreak "linebreak.h" no longer declares the functions |
87d1523f0988
Let linebreak rely on uniwidth/width.
Bruno Haible <bruno@clisp.org>
parents:
9169
diff
changeset
|
44 locale_charset, uc_width, u{8,16,32}_width. Use |
87d1523f0988
Let linebreak rely on uniwidth/width.
Bruno Haible <bruno@clisp.org>
parents:
9169
diff
changeset
|
45 "uniwidth.h" to get these functions declared. |
87d1523f0988
Let linebreak rely on uniwidth/width.
Bruno Haible <bruno@clisp.org>
parents:
9169
diff
changeset
|
46 |
9169
dfa92826de1e
Rename mreadlink_with_size to areadlink_with_size.
Jim Meyering <jim@meyering.net>
parents:
9161
diff
changeset
|
47 2007-08-28 areadlink-with-size |
dfa92826de1e
Rename mreadlink_with_size to areadlink_with_size.
Jim Meyering <jim@meyering.net>
parents:
9161
diff
changeset
|
48 Renamed from mreadlink-with-size. |
dfa92826de1e
Rename mreadlink_with_size to areadlink_with_size.
Jim Meyering <jim@meyering.net>
parents:
9161
diff
changeset
|
49 Function renamed: mreadlink_with_size -> |
dfa92826de1e
Rename mreadlink_with_size to areadlink_with_size.
Jim Meyering <jim@meyering.net>
parents:
9161
diff
changeset
|
50 areadlink_with_size. |
dfa92826de1e
Rename mreadlink_with_size to areadlink_with_size.
Jim Meyering <jim@meyering.net>
parents:
9161
diff
changeset
|
51 |
9161
c5cedfcd0db0
Move getline and getdelim into stdio.h, per POSIX 200x.
Eric Blake <ebb9@byu.net>
parents:
9148
diff
changeset
|
52 2007-08-22 getdelim, getline |
c5cedfcd0db0
Move getline and getdelim into stdio.h, per POSIX 200x.
Eric Blake <ebb9@byu.net>
parents:
9148
diff
changeset
|
53 The include file is changed from "getdelim.h" |
c5cedfcd0db0
Move getline and getdelim into stdio.h, per POSIX 200x.
Eric Blake <ebb9@byu.net>
parents:
9148
diff
changeset
|
54 and "getline.h" to the POSIX 200x <stdio.h>. |
c5cedfcd0db0
Move getline and getdelim into stdio.h, per POSIX 200x.
Eric Blake <ebb9@byu.net>
parents:
9148
diff
changeset
|
55 |
9148 | 56 2007-08-18 idcache Now provides prototypes in "idcache.h". |
57 | |
9143
4290c9101f09
* NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9137
diff
changeset
|
58 2007-08-10 xstrtol The STRTOL_FATAL_ERROR macro is removed. |
4290c9101f09
* NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9137
diff
changeset
|
59 Use the new xstrtol_fatal function instead. |
4290c9101f09
* NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9137
diff
changeset
|
60 |
9137
629a6928f108
* NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9127
diff
changeset
|
61 2007-08-04 human The function human_options no longer reports an |
629a6928f108
* NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9127
diff
changeset
|
62 error to standard error; that is now the |
629a6928f108
* NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9127
diff
changeset
|
63 caller's responsibility. It returns an |
629a6928f108
* NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9127
diff
changeset
|
64 error code of type enum strtol_error |
629a6928f108
* NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9127
diff
changeset
|
65 instead of the integer option value, and stores |
629a6928f108
* NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9127
diff
changeset
|
66 the option value via a new int * argument. |
629a6928f108
* NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9127
diff
changeset
|
67 xstrtol The first two arguments of STRTOL_FATAL_ERROR |
629a6928f108
* NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9127
diff
changeset
|
68 are now an option name and option argument |
629a6928f108
* NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9127
diff
changeset
|
69 instead of an option argument and a type string, |
629a6928f108
* NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9127
diff
changeset
|
70 STRTOL_FAIL_WARN is removed. |
629a6928f108
* NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents:
9127
diff
changeset
|
71 |
9097
e7990121003e
add lgpl-3.0.texi; have all Texinfo licenses consistently omit any sectioning and index commands
Karl Berry <karl@freefriends.org>
parents:
9084
diff
changeset
|
72 2007-07-14 gpl, lgpl New Texinfo versions with no sectioning commands. |
e7990121003e
add lgpl-3.0.texi; have all Texinfo licenses consistently omit any sectioning and index commands
Karl Berry <karl@freefriends.org>
parents:
9084
diff
changeset
|
73 |
9084
2932e92d6e31
* lib/version-etc.c (version_etc_va): Default to GPLv3+.
Eric Blake <ebb9@byu.net>
parents:
9073
diff
changeset
|
74 2007-07-10 version-etc Output now mentions GPLv3+, not GPLv2+. Use |
2932e92d6e31
* lib/version-etc.c (version_etc_va): Default to GPLv3+.
Eric Blake <ebb9@byu.net>
parents:
9073
diff
changeset
|
75 gnulib-tool --local-dir to override this. |
2932e92d6e31
* lib/version-etc.c (version_etc_va): Default to GPLv3+.
Eric Blake <ebb9@byu.net>
parents:
9073
diff
changeset
|
76 |
9073
eff03f4ce262
Remove the wcwidth.h file. Move wcwidth's declaration to wchar_.h.
Bruno Haible <bruno@clisp.org>
parents:
9035
diff
changeset
|
77 2007-07-07 wcwidth The include file is changed from "wcwidth.h" to |
eff03f4ce262
Remove the wcwidth.h file. Move wcwidth's declaration to wchar_.h.
Bruno Haible <bruno@clisp.org>
parents:
9035
diff
changeset
|
78 <wchar.h>. |
eff03f4ce262
Remove the wcwidth.h file. Move wcwidth's declaration to wchar_.h.
Bruno Haible <bruno@clisp.org>
parents:
9035
diff
changeset
|
79 |
9035
e87363712c15
2007-07-02 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
9034
diff
changeset
|
80 2007-07-02 gpl, lgpl Renamed to gpl-2.0 and lgpl-2.1 respectively. |
9034
85e326413702
2007-07-02 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8984
diff
changeset
|
81 (There is also a new module gpl-3.0.) |
85e326413702
2007-07-02 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents:
8984
diff
changeset
|
82 |
8984
6f10d6c95947
Mention yesterday's lchown changes.
Bruno Haible <bruno@clisp.org>
parents:
8949
diff
changeset
|
83 2007-06-16 lchown The include file is changed from "lchown.h" to |
6f10d6c95947
Mention yesterday's lchown changes.
Bruno Haible <bruno@clisp.org>
parents:
8949
diff
changeset
|
84 <unistd.h>. |
6f10d6c95947
Mention yesterday's lchown changes.
Bruno Haible <bruno@clisp.org>
parents:
8949
diff
changeset
|
85 |
8949
e9aa39473d0f
Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents:
8882
diff
changeset
|
86 2007-06-09 xallocsa Renamed to xmalloca. The include file "xallocsa.h" |
e9aa39473d0f
Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents:
8882
diff
changeset
|
87 was remamed to "xmalloca.h". The function was |
e9aa39473d0f
Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents:
8882
diff
changeset
|
88 renamed: |
e9aa39473d0f
Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents:
8882
diff
changeset
|
89 xallocsa -> xmalloca |
e9aa39473d0f
Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents:
8882
diff
changeset
|
90 |
e9aa39473d0f
Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents:
8882
diff
changeset
|
91 2007-06-09 allocsa Renamed to malloca. The include file "allocsa.h" |
e9aa39473d0f
Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents:
8882
diff
changeset
|
92 was remamed to "malloca.h". The function-like |
e9aa39473d0f
Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents:
8882
diff
changeset
|
93 macros were renamed: |
e9aa39473d0f
Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents:
8882
diff
changeset
|
94 allocsa -> malloca |
e9aa39473d0f
Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents:
8882
diff
changeset
|
95 freesa -> freea |
e9aa39473d0f
Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents:
8882
diff
changeset
|
96 |
8861
814d6b735b16
* NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
Jim Meyering <jim@meyering.net>
parents:
8783
diff
changeset
|
97 2007-05-20 utimens Renamed futimens to gl_futimens, to avoid |
814d6b735b16
* NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
Jim Meyering <jim@meyering.net>
parents:
8783
diff
changeset
|
98 conflict with the glibc-2.6-introduced function |
814d6b735b16
* NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
Jim Meyering <jim@meyering.net>
parents:
8783
diff
changeset
|
99 that has a different signature. |
814d6b735b16
* NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
Jim Meyering <jim@meyering.net>
parents:
8783
diff
changeset
|
100 |
8783
bb4e89fdfa87
sigprocmask.h is replaced with <signal.h>.
Bruno Haible <bruno@clisp.org>
parents:
8648
diff
changeset
|
101 2007-05-01 sigprocmask The module now depends on signal, so replace |
bb4e89fdfa87
sigprocmask.h is replaced with <signal.h>.
Bruno Haible <bruno@clisp.org>
parents:
8648
diff
changeset
|
102 #include "sigprocmask.h" |
bb4e89fdfa87
sigprocmask.h is replaced with <signal.h>.
Bruno Haible <bruno@clisp.org>
parents:
8648
diff
changeset
|
103 with |
bb4e89fdfa87
sigprocmask.h is replaced with <signal.h>.
Bruno Haible <bruno@clisp.org>
parents:
8648
diff
changeset
|
104 #include <signal.h> |
bb4e89fdfa87
sigprocmask.h is replaced with <signal.h>.
Bruno Haible <bruno@clisp.org>
parents:
8648
diff
changeset
|
105 |
8648
359d135f748c
Assume 'long double' exists.
Bruno Haible <bruno@clisp.org>
parents:
8620
diff
changeset
|
106 2007-04-06 gettext The macro HAVE_LONG_DOUBLE is no longer set. |
359d135f748c
Assume 'long double' exists.
Bruno Haible <bruno@clisp.org>
parents:
8620
diff
changeset
|
107 You can replace all its uses with 1, i.e. assume |
359d135f748c
Assume 'long double' exists.
Bruno Haible <bruno@clisp.org>
parents:
8620
diff
changeset
|
108 'long double' as a type exists. |
359d135f748c
Assume 'long double' exists.
Bruno Haible <bruno@clisp.org>
parents:
8620
diff
changeset
|
109 |
8608
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
110 2007-04-01 arcfour Renamed to crypto/arcfour. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
111 arctwo Renamed to crypto/arctwo. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
112 des Renamed to crypto/des. |
8619 | 113 gc Renamed to crypto/gc. |
8608
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
114 gc-arcfour Renamed to crypto/gc-arcfour. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
115 gc-arctwo Renamed to crypto/gc-arctwo. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
116 gc-des Renamed to crypto/gc-des. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
117 gc-hmac-md5 Renamed to crypto/gc-hmac-md5. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
118 gc-hmac-sha1 Renamed to crypto/gc-hmac-sha1. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
119 gc-md2 Renamed to crypto/gc-md2. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
120 gc-md4 Renamed to crypto/gc-md4. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
121 gc-md5 Renamed to crypto/gc-md5. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
122 gc-pbkdf2-sha1 Renamed to crypto/gc-pbkdf2-sha1. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
123 gc-random Renamed to crypto/gc-random. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
124 gc-rijndael Renamed to crypto/gc-rijndael. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
125 gc-sha1 Renamed to crypto/gc-sha1. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
126 hmac-md5 Renamed to crypto/hmac-md5. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
127 hmac-sha1 Renamed to crypto/hmac-sha1. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
128 md2 Renamed to crypto/md2. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
129 md4 Renamed to crypto/md4. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
130 md5 Renamed to crypto/md5. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
131 rijndael Renamed to crypto/rijndael. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
132 sha1 Renamed to crypto/sha1. |
345e76b911df
Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents:
8571
diff
changeset
|
133 |
8571 | 134 2007-03-27 vasprintf The module now depends on stdio, so replace |
135 #include "vasprintf.h" | |
136 with | |
137 #include <stdio.h> | |
138 | |
8532 | 139 2007-03-24 tsearch The include file is changed from "tsearch.h" to |
140 <search.h>. | |
141 | |
8507
2d9de99c11d9
Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents:
8478
diff
changeset
|
142 2007-03-24 utf8-ucs4 The include file is changed from "utf8-ucs4.h" |
2d9de99c11d9
Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents:
8478
diff
changeset
|
143 to "unistr.h". |
2d9de99c11d9
Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents:
8478
diff
changeset
|
144 utf8-ucs4-unsafe The include file is changed from |
2d9de99c11d9
Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents:
8478
diff
changeset
|
145 "utf8-ucs4-unsafe.h" to "unistr.h". |
2d9de99c11d9
Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents:
8478
diff
changeset
|
146 utf16-ucs4 The include file is changed from "utf16-ucs4.h" |
2d9de99c11d9
Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents:
8478
diff
changeset
|
147 to "unistr.h". |
8882 | 148 utf16-ucs4-unsafe The include file is changed from |
149 "utf16-ucs4-unsafe.h" to "unistr.h". | |
8507
2d9de99c11d9
Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents:
8478
diff
changeset
|
150 ucs4-utf8 The include file is changed from "ucs4-utf8.h" |
2d9de99c11d9
Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents:
8478
diff
changeset
|
151 to "unistr.h". |
2d9de99c11d9
Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents:
8478
diff
changeset
|
152 ucs4-utf16 The include file is changed from "ucs4-utf16.h" |
2d9de99c11d9
Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents:
8478
diff
changeset
|
153 to "unistr.h". |
2d9de99c11d9
Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents:
8478
diff
changeset
|
154 |
8478 | 155 2007-03-19 iconvme The module is removed. Use module striconv instead: |
156 iconv_string -> str_iconv | |
157 iconv_alloc -> str_cd_iconv (with reversed | |
158 arguments) | |
159 | |
8438
238942284e2f
Allow the use of a destructor for the values stored in the list.
Bruno Haible <bruno@clisp.org>
parents:
8436
diff
changeset
|
160 2007-03-15 list The functions gl_list_create_empty and |
8452
1995f0dca46c
Mention all modules affected by last change.
Bruno Haible <bruno@clisp.org>
parents:
8450
diff
changeset
|
161 array-list gl_list_create now take an extra fourth argument. |
1995f0dca46c
Mention all modules affected by last change.
Bruno Haible <bruno@clisp.org>
parents:
8450
diff
changeset
|
162 carray-list You can pass NULL. |
1995f0dca46c
Mention all modules affected by last change.
Bruno Haible <bruno@clisp.org>
parents:
8450
diff
changeset
|
163 linked-list |
1995f0dca46c
Mention all modules affected by last change.
Bruno Haible <bruno@clisp.org>
parents:
8450
diff
changeset
|
164 linkedhash-list |
1995f0dca46c
Mention all modules affected by last change.
Bruno Haible <bruno@clisp.org>
parents:
8450
diff
changeset
|
165 avltree-list |
1995f0dca46c
Mention all modules affected by last change.
Bruno Haible <bruno@clisp.org>
parents:
8450
diff
changeset
|
166 rbtree-list |
1995f0dca46c
Mention all modules affected by last change.
Bruno Haible <bruno@clisp.org>
parents:
8450
diff
changeset
|
167 avltreehash-list |
1995f0dca46c
Mention all modules affected by last change.
Bruno Haible <bruno@clisp.org>
parents:
8450
diff
changeset
|
168 rbtreehash-list |
8438
238942284e2f
Allow the use of a destructor for the values stored in the list.
Bruno Haible <bruno@clisp.org>
parents:
8436
diff
changeset
|
169 |
8436
36bbb949160c
Add an element disposal function.
Bruno Haible <bruno@clisp.org>
parents:
8435
diff
changeset
|
170 2007-03-15 oset The function gl_oset_create_empty now takes a |
36bbb949160c
Add an element disposal function.
Bruno Haible <bruno@clisp.org>
parents:
8435
diff
changeset
|
171 array-oset third argument. You can pass NULL. |
36bbb949160c
Add an element disposal function.
Bruno Haible <bruno@clisp.org>
parents:
8435
diff
changeset
|
172 avltree-oset |
36bbb949160c
Add an element disposal function.
Bruno Haible <bruno@clisp.org>
parents:
8435
diff
changeset
|
173 rbtree-oset |
36bbb949160c
Add an element disposal function.
Bruno Haible <bruno@clisp.org>
parents:
8435
diff
changeset
|
174 |
8435
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
175 2007-03-12 des The types and functions in lib/des.h have been |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
176 gc-des renamed: |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
177 |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
178 des_ctx -> gl_des_ctx, tripledes_ctx -> gl_3des_ctx, |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
179 des_is_weak_key -> gl_des_is_weak_key, |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
180 des_setkey -> gl_des_setkey, |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
181 des_makekey -> gl_des_makekey, |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
182 des_ecb_crypt -> gl_des_ecb_crypt, |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
183 des_ecb_encrypt -> gl_des_ecb_encrypt, |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
184 des_ecb_decrypt -> gl_des_ecb_decrypt, |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
185 tripledes_set2keys -> gl_3des_set2keys, |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
186 tripledes_set3keys -> gl_3des_set3keys, |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
187 tripledes_makekey -> gl_3des_makekey, |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
188 tripledes_ecb_crypt -> gl_3des_ecb_crypt. |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
189 |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
190 Also consider using the "gc-des" buffer instead of |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
191 using the "des" module directly. |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
192 |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
193 2007-02-28 xreadlink The module xreadlink was renamed to |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
194 xreadlink-with-size. The function was renamed: |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
195 xreadlink -> xreadlink_with_size. |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
196 |
8450
974cb4afc21f
* NEWS: Document stdlib change from 2007-02-18.
Eric Blake <ebb9@byu.net>
parents:
8447
diff
changeset
|
197 2007-02-18 exit The modules now depend on stdlib, so replace |
974cb4afc21f
* NEWS: Document stdlib change from 2007-02-18.
Eric Blake <ebb9@byu.net>
parents:
8447
diff
changeset
|
198 mkdtemp #include "exit.h" |
974cb4afc21f
* NEWS: Document stdlib change from 2007-02-18.
Eric Blake <ebb9@byu.net>
parents:
8447
diff
changeset
|
199 mkstemp #include "mkdtemp.h" |
974cb4afc21f
* NEWS: Document stdlib change from 2007-02-18.
Eric Blake <ebb9@byu.net>
parents:
8447
diff
changeset
|
200 #include "mkstemp.h" |
974cb4afc21f
* NEWS: Document stdlib change from 2007-02-18.
Eric Blake <ebb9@byu.net>
parents:
8447
diff
changeset
|
201 with |
974cb4afc21f
* NEWS: Document stdlib change from 2007-02-18.
Eric Blake <ebb9@byu.net>
parents:
8447
diff
changeset
|
202 #include <stdlib.h> |
974cb4afc21f
* NEWS: Document stdlib change from 2007-02-18.
Eric Blake <ebb9@byu.net>
parents:
8447
diff
changeset
|
203 |
8447
f4bf8ff7f21b
Discuss strdup change.
Simon Josefsson <simon@josefsson.org>
parents:
8438
diff
changeset
|
204 2007-01-26 strdup The module now depends on string, so replace |
f4bf8ff7f21b
Discuss strdup change.
Simon Josefsson <simon@josefsson.org>
parents:
8438
diff
changeset
|
205 #include "strdup.h" |
f4bf8ff7f21b
Discuss strdup change.
Simon Josefsson <simon@josefsson.org>
parents:
8438
diff
changeset
|
206 with |
f4bf8ff7f21b
Discuss strdup change.
Simon Josefsson <simon@josefsson.org>
parents:
8438
diff
changeset
|
207 #include <string.h> |
f4bf8ff7f21b
Discuss strdup change.
Simon Josefsson <simon@josefsson.org>
parents:
8438
diff
changeset
|
208 |
8435
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
209 # This is for Emacs. |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
210 # Local Variables: |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
211 # indent-tabs-mode: nil |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
212 # whitespace-check-buffer-indent: nil |
9ffcb6d5f355
List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff
changeset
|
213 # End: |