Assume 'long double' exists.
[gnulib.git] / NEWS
1 Important notes
2 ---------------
3
4 User visible incompatible changes
5 ---------------------------------
6
7 Date        Modules         Changes
8
9 2007-04-06  gettext         The macro HAVE_LONG_DOUBLE is no longer set.
10                             You can replace all its uses with 1, i.e. assume
11                             'long double' as a type exists.
12
13 2007-04-01  arcfour         Renamed to crypto/arcfour.
14             arctwo          Renamed to crypto/arctwo.
15             des             Renamed to crypto/des.
16             gc              Renamed to crypto/gc.
17             gc-arcfour      Renamed to crypto/gc-arcfour.
18             gc-arctwo       Renamed to crypto/gc-arctwo.
19             gc-des          Renamed to crypto/gc-des.
20             gc-hmac-md5     Renamed to crypto/gc-hmac-md5.
21             gc-hmac-sha1    Renamed to crypto/gc-hmac-sha1.
22             gc-md2          Renamed to crypto/gc-md2.
23             gc-md4          Renamed to crypto/gc-md4.
24             gc-md5          Renamed to crypto/gc-md5.
25             gc-pbkdf2-sha1  Renamed to crypto/gc-pbkdf2-sha1.
26             gc-random       Renamed to crypto/gc-random.
27             gc-rijndael     Renamed to crypto/gc-rijndael.
28             gc-sha1         Renamed to crypto/gc-sha1.
29             hmac-md5        Renamed to crypto/hmac-md5.
30             hmac-sha1       Renamed to crypto/hmac-sha1.
31             md2             Renamed to crypto/md2.
32             md4             Renamed to crypto/md4.
33             md5             Renamed to crypto/md5.
34             rijndael        Renamed to crypto/rijndael.
35             sha1            Renamed to crypto/sha1.
36
37 2007-03-27  vasprintf       The module now depends on stdio, so replace
38                                #include "vasprintf.h"
39                             with
40                                #include <stdio.h>
41
42 2007-03-24  tsearch         The include file is changed from "tsearch.h" to
43                             <search.h>.
44
45 2007-03-24  utf8-ucs4       The include file is changed from "utf8-ucs4.h"
46                             to "unistr.h".
47             utf8-ucs4-unsafe  The include file is changed from
48                             "utf8-ucs4-unsafe.h" to "unistr.h".
49             utf16-ucs4      The include file is changed from "utf16-ucs4.h"
50                             to "unistr.h".
51             utf16-ucs4-unsafe  The include file is changed from "utf16-ucs4.h"
52                             to "unistr.h".
53             ucs4-utf8       The include file is changed from "ucs4-utf8.h"
54                             to "unistr.h".
55             ucs4-utf16      The include file is changed from "ucs4-utf16.h"
56                             to "unistr.h".
57
58 2007-03-19  iconvme         The module is removed. Use module striconv instead:
59                             iconv_string -> str_iconv
60                             iconv_alloc -> str_cd_iconv (with reversed
61                                            arguments)
62
63 2007-03-15  list            The functions gl_list_create_empty and
64             array-list      gl_list_create now take an extra fourth argument.
65             carray-list     You can pass NULL.
66             linked-list
67             linkedhash-list
68             avltree-list
69             rbtree-list
70             avltreehash-list
71             rbtreehash-list
72
73 2007-03-15  oset            The function gl_oset_create_empty now takes a
74             array-oset      third argument. You can pass NULL.
75             avltree-oset
76             rbtree-oset
77
78 2007-03-12  des             The types and functions in lib/des.h have been
79             gc-des          renamed:
80
81                             des_ctx -> gl_des_ctx, tripledes_ctx -> gl_3des_ctx,
82                             des_is_weak_key -> gl_des_is_weak_key,
83                             des_setkey -> gl_des_setkey,
84                             des_makekey -> gl_des_makekey,
85                             des_ecb_crypt -> gl_des_ecb_crypt,
86                             des_ecb_encrypt -> gl_des_ecb_encrypt,
87                             des_ecb_decrypt -> gl_des_ecb_decrypt,
88                             tripledes_set2keys -> gl_3des_set2keys,
89                             tripledes_set3keys -> gl_3des_set3keys,
90                             tripledes_makekey -> gl_3des_makekey,
91                             tripledes_ecb_crypt -> gl_3des_ecb_crypt.
92
93                             Also consider using the "gc-des" buffer instead of
94                             using the "des" module directly.
95
96 2007-02-28  xreadlink       The module xreadlink was renamed to
97                             xreadlink-with-size. The function was renamed:
98                             xreadlink -> xreadlink_with_size.
99
100 2007-02-18  exit            The modules now depend on stdlib, so replace
101             mkdtemp           #include "exit.h"
102             mkstemp           #include "mkdtemp.h"
103                               #include "mkstemp.h"
104                             with
105                               #include <stdlib.h>
106
107 2007-01-26  strdup          The module now depends on string, so replace
108                               #include "strdup.h"
109                             with
110                               #include <string.h>
111
112 # This is for Emacs.
113 # Local Variables:
114 # indent-tabs-mode: nil
115 # whitespace-check-buffer-indent: nil
116 # End: