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