Fix problem with getdate on mingw32 reported by Simon Josefsson
[gnulib.git] / NEWS
1 Important notes
2 ---------------
3
4 User visible incompatible changes
5 ---------------------------------
6
7 Date        Modules         Changes
8
9 2008-01-14  strcasestr      This module now replaces worst-case inefficient
10                             implementations; clients that use controlled
11                             needles and thus do not care about worst-case
12                             efficiency should use the new strcasestr-simple
13                             module instead for smaller code size.
14
15 2008-01-09  alloca-opt      Now defines HAVE_ALLOCA_H only when the system
16                             supplies an <alloca.h>.  Gnulib-using code is now
17                             expected to include <alloca.h> unconditionally.
18                             Non-gnulib-using code can continue to include
19                             <alloca.h> only if HAVE_ALLOCA_H is defined.
20
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
27 2007-12-24  setenv          The include file is changed from "setenv.h" to
28                             <stdlib.h>. Also, the unsetenv function is no
29                             longer declared in this module; use the 'unsetenv'
30                             module if you need it.
31
32 2007-12-03  getpagesize     The include file is changed from "getpagesize.h"
33                             to <unistd.h>.
34
35 2007-12-03  strcase         The include file is changed from <string.h> to
36                             <strings.h>.
37
38 2007-10-07  most modules    The license for most modules has changed from
39                             GPLv2+ to GPLv3+, and from LGPLv2+ to LGPLv3+.
40                             A few modules are still under LGPLv2+; see the
41                             module description for the applicable license.
42
43 2007-09-01  linebreak       "linebreak.h" no longer declares the functions
44                             locale_charset, uc_width, u{8,16,32}_width. Use
45                             "uniwidth.h" to get these functions declared.
46
47 2007-08-28  areadlink-with-size
48                             Renamed from mreadlink-with-size.
49                             Function renamed: mreadlink_with_size ->
50                             areadlink_with_size.
51
52 2007-08-22  getdelim, getline
53                             The include file is changed from "getdelim.h"
54                             and "getline.h" to the POSIX 200x <stdio.h>.
55
56 2007-08-18  idcache         Now provides prototypes in "idcache.h".
57
58 2007-08-10  xstrtol         The STRTOL_FATAL_ERROR macro is removed.
59                             Use the new xstrtol_fatal function instead.
60
61 2007-08-04  human           The function human_options no longer reports an
62                             error to standard error; that is now the
63                             caller's responsibility.  It returns an
64                             error code of type enum strtol_error
65                             instead of the integer option value, and stores
66                             the option value via a new int * argument.
67             xstrtol         The first two arguments of STRTOL_FATAL_ERROR
68                             are now an option name and option argument
69                             instead of an option argument and a type string,
70                             STRTOL_FAIL_WARN is removed.
71
72 2007-07-14  gpl, lgpl       New Texinfo versions with no sectioning commands.
73
74 2007-07-10  version-etc     Output now mentions GPLv3+, not GPLv2+.  Use
75                             gnulib-tool --local-dir to override this.
76
77 2007-07-07  wcwidth         The include file is changed from "wcwidth.h" to
78                             <wchar.h>.
79
80 2007-07-02  gpl, lgpl       Renamed to gpl-2.0 and lgpl-2.1 respectively.
81                             (There is also a new module gpl-3.0.)
82
83 2007-06-16  lchown          The include file is changed from "lchown.h" to
84                             <unistd.h>.
85
86 2007-06-09  xallocsa        Renamed to xmalloca. The include file "xallocsa.h"
87                             was remamed to "xmalloca.h". The function was
88                             renamed:
89                               xallocsa -> xmalloca
90
91 2007-06-09  allocsa         Renamed to malloca. The include file "allocsa.h"
92                             was remamed to "malloca.h". The function-like
93                             macros were renamed:
94                               allocsa -> malloca
95                               freesa -> freea
96
97 2007-05-20  utimens         Renamed futimens to gl_futimens, to avoid
98                             conflict with the glibc-2.6-introduced function
99                             that has a different signature.
100
101 2007-05-01  sigprocmask     The module now depends on signal, so replace
102                               #include "sigprocmask.h"
103                             with
104                               #include <signal.h>
105
106 2007-04-06  gettext         The macro HAVE_LONG_DOUBLE is no longer set.
107                             You can replace all its uses with 1, i.e. assume
108                             'long double' as a type exists.
109
110 2007-04-01  arcfour         Renamed to crypto/arcfour.
111             arctwo          Renamed to crypto/arctwo.
112             des             Renamed to crypto/des.
113             gc              Renamed to crypto/gc.
114             gc-arcfour      Renamed to crypto/gc-arcfour.
115             gc-arctwo       Renamed to crypto/gc-arctwo.
116             gc-des          Renamed to crypto/gc-des.
117             gc-hmac-md5     Renamed to crypto/gc-hmac-md5.
118             gc-hmac-sha1    Renamed to crypto/gc-hmac-sha1.
119             gc-md2          Renamed to crypto/gc-md2.
120             gc-md4          Renamed to crypto/gc-md4.
121             gc-md5          Renamed to crypto/gc-md5.
122             gc-pbkdf2-sha1  Renamed to crypto/gc-pbkdf2-sha1.
123             gc-random       Renamed to crypto/gc-random.
124             gc-rijndael     Renamed to crypto/gc-rijndael.
125             gc-sha1         Renamed to crypto/gc-sha1.
126             hmac-md5        Renamed to crypto/hmac-md5.
127             hmac-sha1       Renamed to crypto/hmac-sha1.
128             md2             Renamed to crypto/md2.
129             md4             Renamed to crypto/md4.
130             md5             Renamed to crypto/md5.
131             rijndael        Renamed to crypto/rijndael.
132             sha1            Renamed to crypto/sha1.
133
134 2007-03-27  vasprintf       The module now depends on stdio, so replace
135                                #include "vasprintf.h"
136                             with
137                                #include <stdio.h>
138
139 2007-03-24  tsearch         The include file is changed from "tsearch.h" to
140                             <search.h>.
141
142 2007-03-24  utf8-ucs4       The include file is changed from "utf8-ucs4.h"
143                             to "unistr.h".
144             utf8-ucs4-unsafe  The include file is changed from
145                             "utf8-ucs4-unsafe.h" to "unistr.h".
146             utf16-ucs4      The include file is changed from "utf16-ucs4.h"
147                             to "unistr.h".
148             utf16-ucs4-unsafe  The include file is changed from
149                             "utf16-ucs4-unsafe.h" to "unistr.h".
150             ucs4-utf8       The include file is changed from "ucs4-utf8.h"
151                             to "unistr.h".
152             ucs4-utf16      The include file is changed from "ucs4-utf16.h"
153                             to "unistr.h".
154
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
160 2007-03-15  list            The functions gl_list_create_empty and
161             array-list      gl_list_create now take an extra fourth argument.
162             carray-list     You can pass NULL.
163             linked-list
164             linkedhash-list
165             avltree-list
166             rbtree-list
167             avltreehash-list
168             rbtreehash-list
169
170 2007-03-15  oset            The function gl_oset_create_empty now takes a
171             array-oset      third argument. You can pass NULL.
172             avltree-oset
173             rbtree-oset
174
175 2007-03-12  des             The types and functions in lib/des.h have been
176             gc-des          renamed:
177
178                             des_ctx -> gl_des_ctx, tripledes_ctx -> gl_3des_ctx,
179                             des_is_weak_key -> gl_des_is_weak_key,
180                             des_setkey -> gl_des_setkey,
181                             des_makekey -> gl_des_makekey,
182                             des_ecb_crypt -> gl_des_ecb_crypt,
183                             des_ecb_encrypt -> gl_des_ecb_encrypt,
184                             des_ecb_decrypt -> gl_des_ecb_decrypt,
185                             tripledes_set2keys -> gl_3des_set2keys,
186                             tripledes_set3keys -> gl_3des_set3keys,
187                             tripledes_makekey -> gl_3des_makekey,
188                             tripledes_ecb_crypt -> gl_3des_ecb_crypt.
189
190                             Also consider using the "gc-des" buffer instead of
191                             using the "des" module directly.
192
193 2007-02-28  xreadlink       The module xreadlink was renamed to
194                             xreadlink-with-size. The function was renamed:
195                             xreadlink -> xreadlink_with_size.
196
197 2007-02-18  exit            The modules now depend on stdlib, so replace
198             mkdtemp           #include "exit.h"
199             mkstemp           #include "mkdtemp.h"
200                               #include "mkstemp.h"
201                             with
202                               #include <stdlib.h>
203
204 2007-01-26  strdup          The module now depends on string, so replace
205                               #include "strdup.h"
206                             with
207                               #include <string.h>
208
209 # This is for Emacs.
210 # Local Variables:
211 # indent-tabs-mode: nil
212 # whitespace-check-buffer-indent: nil
213 # End: