annotate NEWS @ 30231:d75f2a61b4f9

Set LIBSOCKET instead of augmenting LIBS. Also handle Solaris -lsocket.
author Bruno Haible <bruno@clisp.org>
date Mon, 29 Sep 2008 12:08:01 +0200
parents 9ecf84bb4ac5
children ebbb50a36a9f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
28126
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 Important notes
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2 ---------------
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 User visible incompatible changes
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 ---------------------------------
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7 Date Modules Changes
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8
30231
d75f2a61b4f9 Set LIBSOCKET instead of augmenting LIBS. Also handle Solaris -lsocket.
Bruno Haible <bruno@clisp.org>
parents: 30165
diff changeset
9 2008-09-28 sockets When using this module, you now need to link with
d75f2a61b4f9 Set LIBSOCKET instead of augmenting LIBS. Also handle Solaris -lsocket.
Bruno Haible <bruno@clisp.org>
parents: 30165
diff changeset
10 $(LIBSOCKET).
d75f2a61b4f9 Set LIBSOCKET instead of augmenting LIBS. Also handle Solaris -lsocket.
Bruno Haible <bruno@clisp.org>
parents: 30165
diff changeset
11
30165
9ecf84bb4ac5 implement full-blown select(2) for winsock
Paolo Bonzini <bonzini@gnu.org>
parents: 30160
diff changeset
12 2008-09-24 sys_select The limitation on `select', introduced 2008-09-23,
9ecf84bb4ac5 implement full-blown select(2) for winsock
Paolo Bonzini <bonzini@gnu.org>
parents: 30160
diff changeset
13 was removed. sys_select now includes a select
9ecf84bb4ac5 implement full-blown select(2) for winsock
Paolo Bonzini <bonzini@gnu.org>
parents: 30160
diff changeset
14 wrapper for Winsock. The wrapper expects socket
9ecf84bb4ac5 implement full-blown select(2) for winsock
Paolo Bonzini <bonzini@gnu.org>
parents: 30160
diff changeset
15 and file descriptors to be compatible as arranged
9ecf84bb4ac5 implement full-blown select(2) for winsock
Paolo Bonzini <bonzini@gnu.org>
parents: 30160
diff changeset
16 by the sys_socket on MinGW.
9ecf84bb4ac5 implement full-blown select(2) for winsock
Paolo Bonzini <bonzini@gnu.org>
parents: 30160
diff changeset
17
30160
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
18 2008-09-23 sys_socket Under Windows (MinGW), the module now adds
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
19 wrappers around Winsock functions, so that
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
20 socket descriptors are now compatible with
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
21 file descriptors. In general, this change
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
22 will simply improve your code's portability
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
23 between POSIX platforms and Windows. In
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
24 particular, you will be able to use ioctl and
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
25 close instead of ioctlsocket and closesocket,
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
26 and test errno instead of WSAGetLastError ().
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
27 On the other hand, you have to audit your code to
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
28 remove usage of these Winsock-specific functions.
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
29
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
30 This change does not remove the need to call
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
31 the gl_sockets_startup function from the sockets
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
32 gnulib module. Also, for now select is disabled
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
33 when you include the sys_socket module; while
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
34 the functionality will be restored soon, for
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
35 efficiency it is suggested to use the poll system
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
36 poll system call and gnulib module instead.
0a6caee61f76 update NEWS for previous change
Paolo Bonzini <bonzini@gnu.org>
parents: 30118
diff changeset
37
30118
fb22c4826c2e Remove module EOVERFLOW.
Bruno Haible <bruno@clisp.org>
parents: 30082
diff changeset
38 2008-09-13 EOVERFLOW The module is removed. Use module errno instead.
fb22c4826c2e Remove module EOVERFLOW.
Bruno Haible <bruno@clisp.org>
parents: 30082
diff changeset
39
30081
aa8a6d4a5c4b Split module 'filename' into 'filename' and 'concat-filename'.
Bruno Haible <bruno@clisp.org>
parents: 30077
diff changeset
40 2008-09-01 filename The module does not define the function
30082
1550bfd4b5f6 New module 'xconcat-filename', split off from module 'concat-filename'.
Bruno Haible <bruno@clisp.org>
parents: 30081
diff changeset
41 concatenated_filename any more. To get an
1550bfd4b5f6 New module 'xconcat-filename', split off from module 'concat-filename'.
Bruno Haible <bruno@clisp.org>
parents: 30081
diff changeset
42 equivalent function, use function
1550bfd4b5f6 New module 'xconcat-filename', split off from module 'concat-filename'.
Bruno Haible <bruno@clisp.org>
parents: 30081
diff changeset
43 xconcatenated_filename from module
1550bfd4b5f6 New module 'xconcat-filename', split off from module 'concat-filename'.
Bruno Haible <bruno@clisp.org>
parents: 30081
diff changeset
44 'xconcat-filename'.
30081
aa8a6d4a5c4b Split module 'filename' into 'filename' and 'concat-filename'.
Bruno Haible <bruno@clisp.org>
parents: 30077
diff changeset
45
30077
2c9d1e59696c Assume Solaris specific bi-arch conventions on Solaris systems.
Bruno Haible <bruno@clisp.org>
parents: 30036
diff changeset
46 2008-08-31 havelib On Solaris, when searching for 64-bit mode
2c9d1e59696c Assume Solaris specific bi-arch conventions on Solaris systems.
Bruno Haible <bruno@clisp.org>
parents: 30036
diff changeset
47 libraries the directory $prefix/lib is now ignored.
2c9d1e59696c Assume Solaris specific bi-arch conventions on Solaris systems.
Bruno Haible <bruno@clisp.org>
parents: 30036
diff changeset
48 Instead the directory $prefix/lib/64 is searched.
2c9d1e59696c Assume Solaris specific bi-arch conventions on Solaris systems.
Bruno Haible <bruno@clisp.org>
parents: 30036
diff changeset
49 You may need to create a symbolic link for
2c9d1e59696c Assume Solaris specific bi-arch conventions on Solaris systems.
Bruno Haible <bruno@clisp.org>
parents: 30036
diff changeset
50 $prefix/lib/64 if you have 64-bit libraries
2c9d1e59696c Assume Solaris specific bi-arch conventions on Solaris systems.
Bruno Haible <bruno@clisp.org>
parents: 30036
diff changeset
51 installed in $prefix/lib.
2c9d1e59696c Assume Solaris specific bi-arch conventions on Solaris systems.
Bruno Haible <bruno@clisp.org>
parents: 30036
diff changeset
52
30036
458a692990fe strverscmp: migrate from "strverscmp.h" to <string.h>
Eric Blake <ebb9@byu.net>
parents: 30009
diff changeset
53 2008-08-19 strverscmp The include file is changed from "strverscmp.h"
458a692990fe strverscmp: migrate from "strverscmp.h" to <string.h>
Eric Blake <ebb9@byu.net>
parents: 30009
diff changeset
54 to <string.h>.
458a692990fe strverscmp: migrate from "strverscmp.h" to <string.h>
Eric Blake <ebb9@byu.net>
parents: 30009
diff changeset
55
30009
896026426559 Move the lock and tls source files into a subdirectory.
Bruno Haible <bruno@clisp.org>
parents: 29967
diff changeset
56 2008-08-14 lock The include file is changed from "lock.h"
896026426559 Move the lock and tls source files into a subdirectory.
Bruno Haible <bruno@clisp.org>
parents: 29967
diff changeset
57 to "glthread/lock.h".
896026426559 Move the lock and tls source files into a subdirectory.
Bruno Haible <bruno@clisp.org>
parents: 29967
diff changeset
58 tls The include file is changed from "tls.h"
896026426559 Move the lock and tls source files into a subdirectory.
Bruno Haible <bruno@clisp.org>
parents: 29967
diff changeset
59 to "glthread/tls.h".
896026426559 Move the lock and tls source files into a subdirectory.
Bruno Haible <bruno@clisp.org>
parents: 29967
diff changeset
60
29967
1294168491aa Make c-stack use libsigsegv, when available.
Eric Blake <ebb9@byu.net>
parents: 29955
diff changeset
61 2008-07-17 c-stack The module now requires the addition of
1294168491aa Make c-stack use libsigsegv, when available.
Eric Blake <ebb9@byu.net>
parents: 29955
diff changeset
62 $(LIBCSTACK) or $(LTLIBCSTACK) in Makefile.am,
1294168491aa Make c-stack use libsigsegv, when available.
Eric Blake <ebb9@byu.net>
parents: 29955
diff changeset
63 since it may depend on linking with libsigsegv.
1294168491aa Make c-stack use libsigsegv, when available.
Eric Blake <ebb9@byu.net>
parents: 29955
diff changeset
64
29955
e4b084d57f9e Rename isnand.h to isnand-nolibm.h, similarly for isnanf.h.
Ben Pfaff <blp@cs.stanford.edu>
parents: 29888
diff changeset
65 2008-07-07 isnanf-nolibm The include file is changed from "isnanf.h"
e4b084d57f9e Rename isnand.h to isnand-nolibm.h, similarly for isnanf.h.
Ben Pfaff <blp@cs.stanford.edu>
parents: 29888
diff changeset
66 to "isnanf-nolibm.h".
e4b084d57f9e Rename isnand.h to isnand-nolibm.h, similarly for isnanf.h.
Ben Pfaff <blp@cs.stanford.edu>
parents: 29888
diff changeset
67 isnand-nolibm The include file is changed from "isnand.h"
e4b084d57f9e Rename isnand.h to isnand-nolibm.h, similarly for isnanf.h.
Ben Pfaff <blp@cs.stanford.edu>
parents: 29888
diff changeset
68 to "isnand-nolibm.h".
e4b084d57f9e Rename isnand.h to isnand-nolibm.h, similarly for isnanf.h.
Ben Pfaff <blp@cs.stanford.edu>
parents: 29888
diff changeset
69
29888
81b16cc991cc Add termsigp argument to execute() and wait_process().
Bruno Haible <bruno@clisp.org>
parents: 29732
diff changeset
70 2008-06-10 execute The execute function takes an additional termsigp
81b16cc991cc Add termsigp argument to execute() and wait_process().
Bruno Haible <bruno@clisp.org>
parents: 29732
diff changeset
71 argument. Passing termsigp = NULL is ok.
81b16cc991cc Add termsigp argument to execute() and wait_process().
Bruno Haible <bruno@clisp.org>
parents: 29732
diff changeset
72 wait-process The wait_subprocess function takes an additional
81b16cc991cc Add termsigp argument to execute() and wait_process().
Bruno Haible <bruno@clisp.org>
parents: 29732
diff changeset
73 termsigp argument. Passing termsigp = NULL is ok.
81b16cc991cc Add termsigp argument to execute() and wait_process().
Bruno Haible <bruno@clisp.org>
parents: 29732
diff changeset
74
29732
e8810570d7e2 Split up the 'linebreak' module.
Bruno Haible <bruno@clisp.org>
parents: 29706
diff changeset
75 2008-05-10 linebreak The module is split into several modules unilbrk/*.
e8810570d7e2 Split up the 'linebreak' module.
Bruno Haible <bruno@clisp.org>
parents: 29706
diff changeset
76 The include file is changed from "linebreak.h" to
e8810570d7e2 Split up the 'linebreak' module.
Bruno Haible <bruno@clisp.org>
parents: 29706
diff changeset
77 "unilbrk.h". Two functions are renamed:
e8810570d7e2 Split up the 'linebreak' module.
Bruno Haible <bruno@clisp.org>
parents: 29706
diff changeset
78 mbs_possible_linebreaks -> ulc_possible_linebreaks
e8810570d7e2 Split up the 'linebreak' module.
Bruno Haible <bruno@clisp.org>
parents: 29706
diff changeset
79 mbs_width_linebreaks -> ulc_width_linebreaks
e8810570d7e2 Split up the 'linebreak' module.
Bruno Haible <bruno@clisp.org>
parents: 29706
diff changeset
80
29692
c19339f7c33a Declare rpmatch.
Bruno Haible <bruno@clisp.org>
parents: 29471
diff changeset
81 2008-04-28 rpmatch The include file is now <stdlib.h>.
c19339f7c33a Declare rpmatch.
Bruno Haible <bruno@clisp.org>
parents: 29471
diff changeset
82
29706
062217527cad Mention Simon's recent changes.
Bruno Haible <bruno@clisp.org>
parents: 29692
diff changeset
83 2008-04-28 inet_ntop The include file is changed from "inet_ntop.h"
062217527cad Mention Simon's recent changes.
Bruno Haible <bruno@clisp.org>
parents: 29692
diff changeset
84 to <arpa/inet.h>.
062217527cad Mention Simon's recent changes.
Bruno Haible <bruno@clisp.org>
parents: 29692
diff changeset
85
062217527cad Mention Simon's recent changes.
Bruno Haible <bruno@clisp.org>
parents: 29692
diff changeset
86 2008-04-28 inet_pton The include file is changed from "inet_pton.h"
062217527cad Mention Simon's recent changes.
Bruno Haible <bruno@clisp.org>
parents: 29692
diff changeset
87 to <arpa/inet.h>.
062217527cad Mention Simon's recent changes.
Bruno Haible <bruno@clisp.org>
parents: 29692
diff changeset
88
29471
effc4ab6a391 Take into account the number of pushed-back bytes (ungetc).
Bruno Haible <bruno@clisp.org>
parents: 29337
diff changeset
89 2008-03-06 freadahead The return value's computation has changed. It
effc4ab6a391 Take into account the number of pushed-back bytes (ungetc).
Bruno Haible <bruno@clisp.org>
parents: 29337
diff changeset
90 now increases by 1 after ungetc.
effc4ab6a391 Take into account the number of pushed-back bytes (ungetc).
Bruno Haible <bruno@clisp.org>
parents: 29337
diff changeset
91
29337
b76469a89a3a Rename isnan, applicable to 'double' only, to isnand.
Bruno Haible <bruno@clisp.org>
parents: 29314
diff changeset
92 2008-01-26 isnan-nolibm The module name is changed from isnan-nolibm to
b76469a89a3a Rename isnan, applicable to 'double' only, to isnand.
Bruno Haible <bruno@clisp.org>
parents: 29314
diff changeset
93 isnand-nolibm. The include file is changed from
b76469a89a3a Rename isnan, applicable to 'double' only, to isnand.
Bruno Haible <bruno@clisp.org>
parents: 29314
diff changeset
94 "isnan.h" to "isnand.h". The function that it
b76469a89a3a Rename isnan, applicable to 'double' only, to isnand.
Bruno Haible <bruno@clisp.org>
parents: 29314
diff changeset
95 defines is changed from isnan() to isnand().
b76469a89a3a Rename isnan, applicable to 'double' only, to isnand.
Bruno Haible <bruno@clisp.org>
parents: 29314
diff changeset
96
29314
42d862c3900d Convert strcasestr module to use Two-Way algorithm.
Eric Blake <ebb9@byu.net>
parents: 29283
diff changeset
97 2008-01-14 strcasestr This module now replaces worst-case inefficient
42d862c3900d Convert strcasestr module to use Two-Way algorithm.
Eric Blake <ebb9@byu.net>
parents: 29283
diff changeset
98 implementations; clients that use controlled
42d862c3900d Convert strcasestr module to use Two-Way algorithm.
Eric Blake <ebb9@byu.net>
parents: 29283
diff changeset
99 needles and thus do not care about worst-case
42d862c3900d Convert strcasestr module to use Two-Way algorithm.
Eric Blake <ebb9@byu.net>
parents: 29283
diff changeset
100 efficiency should use the new strcasestr-simple
42d862c3900d Convert strcasestr module to use Two-Way algorithm.
Eric Blake <ebb9@byu.net>
parents: 29283
diff changeset
101 module instead for smaller code size.
42d862c3900d Convert strcasestr module to use Two-Way algorithm.
Eric Blake <ebb9@byu.net>
parents: 29283
diff changeset
102
29283
5af464d2ca24 gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
Paul Eggert <eggert@cs.ucla.edu>
parents: 29282
diff changeset
103 2008-01-09 alloca-opt Now defines HAVE_ALLOCA_H only when the system
5af464d2ca24 gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
Paul Eggert <eggert@cs.ucla.edu>
parents: 29282
diff changeset
104 supplies an <alloca.h>. Gnulib-using code is now
5af464d2ca24 gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
Paul Eggert <eggert@cs.ucla.edu>
parents: 29282
diff changeset
105 expected to include <alloca.h> unconditionally.
5af464d2ca24 gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
Paul Eggert <eggert@cs.ucla.edu>
parents: 29282
diff changeset
106 Non-gnulib-using code can continue to include
5af464d2ca24 gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
Paul Eggert <eggert@cs.ucla.edu>
parents: 29282
diff changeset
107 <alloca.h> only if HAVE_ALLOCA_H is defined.
5af464d2ca24 gl_FUNC_ALLOCA no longer defines HAVE_ALLOCA_H unconditionally.
Paul Eggert <eggert@cs.ucla.edu>
parents: 29282
diff changeset
108
29282
f429473885d8 Add memmem-simple module.
Eric Blake <ebb9@byu.net>
parents: 29236
diff changeset
109 2008-01-08 memmem This module now replaces worst-case inefficient
f429473885d8 Add memmem-simple module.
Eric Blake <ebb9@byu.net>
parents: 29236
diff changeset
110 implementations; clients that use controlled
f429473885d8 Add memmem-simple module.
Eric Blake <ebb9@byu.net>
parents: 29236
diff changeset
111 needles and thus do not care about worst-case
f429473885d8 Add memmem-simple module.
Eric Blake <ebb9@byu.net>
parents: 29236
diff changeset
112 efficiency should use the new memmem-simple
f429473885d8 Add memmem-simple module.
Eric Blake <ebb9@byu.net>
parents: 29236
diff changeset
113 module instead for smaller code size.
f429473885d8 Add memmem-simple module.
Eric Blake <ebb9@byu.net>
parents: 29236
diff changeset
114
29236
ac34a764569d Split setenv module into setenv and unsetenv. Get rid of setenv.h.
Bruno Haible <bruno@clisp.org>
parents: 29189
diff changeset
115 2007-12-24 setenv The include file is changed from "setenv.h" to
ac34a764569d Split setenv module into setenv and unsetenv. Get rid of setenv.h.
Bruno Haible <bruno@clisp.org>
parents: 29189
diff changeset
116 <stdlib.h>. Also, the unsetenv function is no
ac34a764569d Split setenv module into setenv and unsetenv. Get rid of setenv.h.
Bruno Haible <bruno@clisp.org>
parents: 29189
diff changeset
117 longer declared in this module; use the 'unsetenv'
ac34a764569d Split setenv module into setenv and unsetenv. Get rid of setenv.h.
Bruno Haible <bruno@clisp.org>
parents: 29189
diff changeset
118 module if you need it.
ac34a764569d Split setenv module into setenv and unsetenv. Get rid of setenv.h.
Bruno Haible <bruno@clisp.org>
parents: 29189
diff changeset
119
29189
aa7abd06f148 Move declaration of getpagesize() from getpagesize.h to unistd.h.
Bruno Haible <bruno@clisp.org>
parents: 29187
diff changeset
120 2007-12-03 getpagesize The include file is changed from "getpagesize.h"
aa7abd06f148 Move declaration of getpagesize() from getpagesize.h to unistd.h.
Bruno Haible <bruno@clisp.org>
parents: 29187
diff changeset
121 to <unistd.h>.
aa7abd06f148 Move declaration of getpagesize() from getpagesize.h to unistd.h.
Bruno Haible <bruno@clisp.org>
parents: 29187
diff changeset
122
29187
7ddcc3879a1d Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
Bruno Haible <bruno@clisp.org>
parents: 29005
diff changeset
123 2007-12-03 strcase The include file is changed from <string.h> to
7ddcc3879a1d Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
Bruno Haible <bruno@clisp.org>
parents: 29005
diff changeset
124 <strings.h>.
7ddcc3879a1d Move declarations of str{,n}casecmp from <string.h> to <strings.h>.
Bruno Haible <bruno@clisp.org>
parents: 29005
diff changeset
125
29005
9f4583e2507a Mention the license change.
Bruno Haible <bruno@clisp.org>
parents: 28862
diff changeset
126 2007-10-07 most modules The license for most modules has changed from
9f4583e2507a Mention the license change.
Bruno Haible <bruno@clisp.org>
parents: 28862
diff changeset
127 GPLv2+ to GPLv3+, and from LGPLv2+ to LGPLv3+.
9f4583e2507a Mention the license change.
Bruno Haible <bruno@clisp.org>
parents: 28862
diff changeset
128 A few modules are still under LGPLv2+; see the
9f4583e2507a Mention the license change.
Bruno Haible <bruno@clisp.org>
parents: 28862
diff changeset
129 module description for the applicable license.
9f4583e2507a Mention the license change.
Bruno Haible <bruno@clisp.org>
parents: 28862
diff changeset
130
28862
e7cd3550c527 Let linebreak rely on uniwidth/width.
Bruno Haible <bruno@clisp.org>
parents: 28860
diff changeset
131 2007-09-01 linebreak "linebreak.h" no longer declares the functions
e7cd3550c527 Let linebreak rely on uniwidth/width.
Bruno Haible <bruno@clisp.org>
parents: 28860
diff changeset
132 locale_charset, uc_width, u{8,16,32}_width. Use
e7cd3550c527 Let linebreak rely on uniwidth/width.
Bruno Haible <bruno@clisp.org>
parents: 28860
diff changeset
133 "uniwidth.h" to get these functions declared.
e7cd3550c527 Let linebreak rely on uniwidth/width.
Bruno Haible <bruno@clisp.org>
parents: 28860
diff changeset
134
28860
d4aeff5aa7d3 Rename mreadlink_with_size to areadlink_with_size.
Jim Meyering <jim@meyering.net>
parents: 28852
diff changeset
135 2007-08-28 areadlink-with-size
d4aeff5aa7d3 Rename mreadlink_with_size to areadlink_with_size.
Jim Meyering <jim@meyering.net>
parents: 28852
diff changeset
136 Renamed from mreadlink-with-size.
d4aeff5aa7d3 Rename mreadlink_with_size to areadlink_with_size.
Jim Meyering <jim@meyering.net>
parents: 28852
diff changeset
137 Function renamed: mreadlink_with_size ->
d4aeff5aa7d3 Rename mreadlink_with_size to areadlink_with_size.
Jim Meyering <jim@meyering.net>
parents: 28852
diff changeset
138 areadlink_with_size.
d4aeff5aa7d3 Rename mreadlink_with_size to areadlink_with_size.
Jim Meyering <jim@meyering.net>
parents: 28852
diff changeset
139
28852
90da3a997392 Move getline and getdelim into stdio.h, per POSIX 200x.
Eric Blake <ebb9@byu.net>
parents: 28839
diff changeset
140 2007-08-22 getdelim, getline
90da3a997392 Move getline and getdelim into stdio.h, per POSIX 200x.
Eric Blake <ebb9@byu.net>
parents: 28839
diff changeset
141 The include file is changed from "getdelim.h"
90da3a997392 Move getline and getdelim into stdio.h, per POSIX 200x.
Eric Blake <ebb9@byu.net>
parents: 28839
diff changeset
142 and "getline.h" to the POSIX 200x <stdio.h>.
90da3a997392 Move getline and getdelim into stdio.h, per POSIX 200x.
Eric Blake <ebb9@byu.net>
parents: 28839
diff changeset
143
28839
0a46aaab7cb3 New file: lib/idcache.h
Jim Meyering <jim@meyering.net>
parents: 28834
diff changeset
144 2007-08-18 idcache Now provides prototypes in "idcache.h".
0a46aaab7cb3 New file: lib/idcache.h
Jim Meyering <jim@meyering.net>
parents: 28834
diff changeset
145
28834
eac6fb1ccbb9 * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
Paul Eggert <eggert@cs.ucla.edu>
parents: 28828
diff changeset
146 2007-08-10 xstrtol The STRTOL_FATAL_ERROR macro is removed.
eac6fb1ccbb9 * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
Paul Eggert <eggert@cs.ucla.edu>
parents: 28828
diff changeset
147 Use the new xstrtol_fatal function instead.
eac6fb1ccbb9 * NEWS: In xstrtol, remove STRTOL_FATAL_ERROR and add xstrtol_fatal.
Paul Eggert <eggert@cs.ucla.edu>
parents: 28828
diff changeset
148
28828
09fd0f30ea71 * NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents: 28818
diff changeset
149 2007-08-04 human The function human_options no longer reports an
09fd0f30ea71 * NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents: 28818
diff changeset
150 error to standard error; that is now the
09fd0f30ea71 * NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents: 28818
diff changeset
151 caller's responsibility. It returns an
09fd0f30ea71 * NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents: 28818
diff changeset
152 error code of type enum strtol_error
09fd0f30ea71 * NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents: 28818
diff changeset
153 instead of the integer option value, and stores
09fd0f30ea71 * NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents: 28818
diff changeset
154 the option value via a new int * argument.
09fd0f30ea71 * NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents: 28818
diff changeset
155 xstrtol The first two arguments of STRTOL_FATAL_ERROR
09fd0f30ea71 * NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents: 28818
diff changeset
156 are now an option name and option argument
09fd0f30ea71 * NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents: 28818
diff changeset
157 instead of an option argument and a type string,
09fd0f30ea71 * NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents: 28818
diff changeset
158 STRTOL_FAIL_WARN is removed.
09fd0f30ea71 * NEWS: Describe interface changes to human, xstrtol.
Paul Eggert <eggert@cs.ucla.edu>
parents: 28818
diff changeset
159
28788
389e05d2ed77 add lgpl-3.0.texi; have all Texinfo licenses consistently omit any sectioning and index commands
Karl Berry <karl@freefriends.org>
parents: 28775
diff changeset
160 2007-07-14 gpl, lgpl New Texinfo versions with no sectioning commands.
389e05d2ed77 add lgpl-3.0.texi; have all Texinfo licenses consistently omit any sectioning and index commands
Karl Berry <karl@freefriends.org>
parents: 28775
diff changeset
161
28775
7b6d8dd54043 * lib/version-etc.c (version_etc_va): Default to GPLv3+.
Eric Blake <ebb9@byu.net>
parents: 28764
diff changeset
162 2007-07-10 version-etc Output now mentions GPLv3+, not GPLv2+. Use
7b6d8dd54043 * lib/version-etc.c (version_etc_va): Default to GPLv3+.
Eric Blake <ebb9@byu.net>
parents: 28764
diff changeset
163 gnulib-tool --local-dir to override this.
7b6d8dd54043 * lib/version-etc.c (version_etc_va): Default to GPLv3+.
Eric Blake <ebb9@byu.net>
parents: 28764
diff changeset
164
28764
c82e98b710e0 Remove the wcwidth.h file. Move wcwidth's declaration to wchar_.h.
Bruno Haible <bruno@clisp.org>
parents: 28726
diff changeset
165 2007-07-07 wcwidth The include file is changed from "wcwidth.h" to
c82e98b710e0 Remove the wcwidth.h file. Move wcwidth's declaration to wchar_.h.
Bruno Haible <bruno@clisp.org>
parents: 28726
diff changeset
166 <wchar.h>.
c82e98b710e0 Remove the wcwidth.h file. Move wcwidth's declaration to wchar_.h.
Bruno Haible <bruno@clisp.org>
parents: 28726
diff changeset
167
28726
cf16f0d42d2b 2007-07-02 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 28725
diff changeset
168 2007-07-02 gpl, lgpl Renamed to gpl-2.0 and lgpl-2.1 respectively.
28725
c93a043d055e 2007-07-02 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 28675
diff changeset
169 (There is also a new module gpl-3.0.)
c93a043d055e 2007-07-02 Simon Josefsson <simon@josefsson.org>
Simon Josefsson <simon@josefsson.org>
parents: 28675
diff changeset
170
28675
2f865f7f0a2d Mention yesterday's lchown changes.
Bruno Haible <bruno@clisp.org>
parents: 28640
diff changeset
171 2007-06-16 lchown The include file is changed from "lchown.h" to
2f865f7f0a2d Mention yesterday's lchown changes.
Bruno Haible <bruno@clisp.org>
parents: 28640
diff changeset
172 <unistd.h>.
2f865f7f0a2d Mention yesterday's lchown changes.
Bruno Haible <bruno@clisp.org>
parents: 28640
diff changeset
173
28640
1bf632ad16c5 Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents: 28573
diff changeset
174 2007-06-09 xallocsa Renamed to xmalloca. The include file "xallocsa.h"
1bf632ad16c5 Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents: 28573
diff changeset
175 was remamed to "xmalloca.h". The function was
1bf632ad16c5 Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents: 28573
diff changeset
176 renamed:
1bf632ad16c5 Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents: 28573
diff changeset
177 xallocsa -> xmalloca
1bf632ad16c5 Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents: 28573
diff changeset
178
1bf632ad16c5 Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents: 28573
diff changeset
179 2007-06-09 allocsa Renamed to malloca. The include file "allocsa.h"
1bf632ad16c5 Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents: 28573
diff changeset
180 was remamed to "malloca.h". The function-like
1bf632ad16c5 Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents: 28573
diff changeset
181 macros were renamed:
1bf632ad16c5 Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents: 28573
diff changeset
182 allocsa -> malloca
1bf632ad16c5 Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents: 28573
diff changeset
183 freesa -> freea
1bf632ad16c5 Rename allocsa -> malloca, xallocsa -> xmalloca.
Bruno Haible <bruno@clisp.org>
parents: 28573
diff changeset
184
28552
4961f0e78739 * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
Jim Meyering <jim@meyering.net>
parents: 28474
diff changeset
185 2007-05-20 utimens Renamed futimens to gl_futimens, to avoid
4961f0e78739 * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
Jim Meyering <jim@meyering.net>
parents: 28474
diff changeset
186 conflict with the glibc-2.6-introduced function
4961f0e78739 * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
Jim Meyering <jim@meyering.net>
parents: 28474
diff changeset
187 that has a different signature.
4961f0e78739 * NEWS: Mention the incompatible change (s/futimens/gl_futimens/)
Jim Meyering <jim@meyering.net>
parents: 28474
diff changeset
188
28474
09ece7a9f6f1 sigprocmask.h is replaced with <signal.h>.
Bruno Haible <bruno@clisp.org>
parents: 28339
diff changeset
189 2007-05-01 sigprocmask The module now depends on signal, so replace
09ece7a9f6f1 sigprocmask.h is replaced with <signal.h>.
Bruno Haible <bruno@clisp.org>
parents: 28339
diff changeset
190 #include "sigprocmask.h"
09ece7a9f6f1 sigprocmask.h is replaced with <signal.h>.
Bruno Haible <bruno@clisp.org>
parents: 28339
diff changeset
191 with
09ece7a9f6f1 sigprocmask.h is replaced with <signal.h>.
Bruno Haible <bruno@clisp.org>
parents: 28339
diff changeset
192 #include <signal.h>
09ece7a9f6f1 sigprocmask.h is replaced with <signal.h>.
Bruno Haible <bruno@clisp.org>
parents: 28339
diff changeset
193
28339
aa15dbd2fcc2 Assume 'long double' exists.
Bruno Haible <bruno@clisp.org>
parents: 28311
diff changeset
194 2007-04-06 gettext The macro HAVE_LONG_DOUBLE is no longer set.
aa15dbd2fcc2 Assume 'long double' exists.
Bruno Haible <bruno@clisp.org>
parents: 28311
diff changeset
195 You can replace all its uses with 1, i.e. assume
aa15dbd2fcc2 Assume 'long double' exists.
Bruno Haible <bruno@clisp.org>
parents: 28311
diff changeset
196 'long double' as a type exists.
aa15dbd2fcc2 Assume 'long double' exists.
Bruno Haible <bruno@clisp.org>
parents: 28311
diff changeset
197
28299
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
198 2007-04-01 arcfour Renamed to crypto/arcfour.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
199 arctwo Renamed to crypto/arctwo.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
200 des Renamed to crypto/des.
28310
de992bf84f4a Fix gc.
Simon Josefsson <simon@josefsson.org>
parents: 28299
diff changeset
201 gc Renamed to crypto/gc.
28299
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
202 gc-arcfour Renamed to crypto/gc-arcfour.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
203 gc-arctwo Renamed to crypto/gc-arctwo.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
204 gc-des Renamed to crypto/gc-des.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
205 gc-hmac-md5 Renamed to crypto/gc-hmac-md5.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
206 gc-hmac-sha1 Renamed to crypto/gc-hmac-sha1.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
207 gc-md2 Renamed to crypto/gc-md2.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
208 gc-md4 Renamed to crypto/gc-md4.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
209 gc-md5 Renamed to crypto/gc-md5.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
210 gc-pbkdf2-sha1 Renamed to crypto/gc-pbkdf2-sha1.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
211 gc-random Renamed to crypto/gc-random.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
212 gc-rijndael Renamed to crypto/gc-rijndael.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
213 gc-sha1 Renamed to crypto/gc-sha1.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
214 hmac-md5 Renamed to crypto/hmac-md5.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
215 hmac-sha1 Renamed to crypto/hmac-sha1.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
216 md2 Renamed to crypto/md2.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
217 md4 Renamed to crypto/md4.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
218 md5 Renamed to crypto/md5.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
219 rijndael Renamed to crypto/rijndael.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
220 sha1 Renamed to crypto/sha1.
928654cc2ed3 Crypto modules were renamed.
Bruno Haible <bruno@clisp.org>
parents: 28262
diff changeset
221
28262
20ca9749f43a Reorder.
Simon Josefsson <simon@josefsson.org>
parents: 28223
diff changeset
222 2007-03-27 vasprintf The module now depends on stdio, so replace
20ca9749f43a Reorder.
Simon Josefsson <simon@josefsson.org>
parents: 28223
diff changeset
223 #include "vasprintf.h"
20ca9749f43a Reorder.
Simon Josefsson <simon@josefsson.org>
parents: 28223
diff changeset
224 with
20ca9749f43a Reorder.
Simon Josefsson <simon@josefsson.org>
parents: 28223
diff changeset
225 #include <stdio.h>
20ca9749f43a Reorder.
Simon Josefsson <simon@josefsson.org>
parents: 28223
diff changeset
226
28223
f87bd16da135 New module 'search'.
Bruno Haible <bruno@clisp.org>
parents: 28198
diff changeset
227 2007-03-24 tsearch The include file is changed from "tsearch.h" to
f87bd16da135 New module 'search'.
Bruno Haible <bruno@clisp.org>
parents: 28198
diff changeset
228 <search.h>.
f87bd16da135 New module 'search'.
Bruno Haible <bruno@clisp.org>
parents: 28198
diff changeset
229
28198
5a6ee1aa7665 Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents: 28169
diff changeset
230 2007-03-24 utf8-ucs4 The include file is changed from "utf8-ucs4.h"
5a6ee1aa7665 Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents: 28169
diff changeset
231 to "unistr.h".
5a6ee1aa7665 Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents: 28169
diff changeset
232 utf8-ucs4-unsafe The include file is changed from
5a6ee1aa7665 Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents: 28169
diff changeset
233 "utf8-ucs4-unsafe.h" to "unistr.h".
5a6ee1aa7665 Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents: 28169
diff changeset
234 utf16-ucs4 The include file is changed from "utf16-ucs4.h"
5a6ee1aa7665 Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents: 28169
diff changeset
235 to "unistr.h".
28573
c9626cbb4fea Fix an old entry.
Bruno Haible <bruno@clisp.org>
parents: 28552
diff changeset
236 utf16-ucs4-unsafe The include file is changed from
c9626cbb4fea Fix an old entry.
Bruno Haible <bruno@clisp.org>
parents: 28552
diff changeset
237 "utf16-ucs4-unsafe.h" to "unistr.h".
28198
5a6ee1aa7665 Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents: 28169
diff changeset
238 ucs4-utf8 The include file is changed from "ucs4-utf8.h"
5a6ee1aa7665 Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents: 28169
diff changeset
239 to "unistr.h".
5a6ee1aa7665 Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents: 28169
diff changeset
240 ucs4-utf16 The include file is changed from "ucs4-utf16.h"
5a6ee1aa7665 Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents: 28169
diff changeset
241 to "unistr.h".
5a6ee1aa7665 Drop the include files utf8-ucs4.h, utf8-ucs4-unsafe.h, utf16-ucs4.h,
Bruno Haible <bruno@clisp.org>
parents: 28169
diff changeset
242
28169
c74104f69278 Remove module 'iconvme'.
Bruno Haible <bruno@clisp.org>
parents: 28143
diff changeset
243 2007-03-19 iconvme The module is removed. Use module striconv instead:
c74104f69278 Remove module 'iconvme'.
Bruno Haible <bruno@clisp.org>
parents: 28143
diff changeset
244 iconv_string -> str_iconv
c74104f69278 Remove module 'iconvme'.
Bruno Haible <bruno@clisp.org>
parents: 28143
diff changeset
245 iconv_alloc -> str_cd_iconv (with reversed
c74104f69278 Remove module 'iconvme'.
Bruno Haible <bruno@clisp.org>
parents: 28143
diff changeset
246 arguments)
c74104f69278 Remove module 'iconvme'.
Bruno Haible <bruno@clisp.org>
parents: 28143
diff changeset
247
28129
7818af6e93ec Allow the use of a destructor for the values stored in the list.
Bruno Haible <bruno@clisp.org>
parents: 28127
diff changeset
248 2007-03-15 list The functions gl_list_create_empty and
28143
b8af3c5f121b Mention all modules affected by last change.
Bruno Haible <bruno@clisp.org>
parents: 28141
diff changeset
249 array-list gl_list_create now take an extra fourth argument.
b8af3c5f121b Mention all modules affected by last change.
Bruno Haible <bruno@clisp.org>
parents: 28141
diff changeset
250 carray-list You can pass NULL.
b8af3c5f121b Mention all modules affected by last change.
Bruno Haible <bruno@clisp.org>
parents: 28141
diff changeset
251 linked-list
b8af3c5f121b Mention all modules affected by last change.
Bruno Haible <bruno@clisp.org>
parents: 28141
diff changeset
252 linkedhash-list
b8af3c5f121b Mention all modules affected by last change.
Bruno Haible <bruno@clisp.org>
parents: 28141
diff changeset
253 avltree-list
b8af3c5f121b Mention all modules affected by last change.
Bruno Haible <bruno@clisp.org>
parents: 28141
diff changeset
254 rbtree-list
b8af3c5f121b Mention all modules affected by last change.
Bruno Haible <bruno@clisp.org>
parents: 28141
diff changeset
255 avltreehash-list
b8af3c5f121b Mention all modules affected by last change.
Bruno Haible <bruno@clisp.org>
parents: 28141
diff changeset
256 rbtreehash-list
28129
7818af6e93ec Allow the use of a destructor for the values stored in the list.
Bruno Haible <bruno@clisp.org>
parents: 28127
diff changeset
257
28127
f6df72989d3b Add an element disposal function.
Bruno Haible <bruno@clisp.org>
parents: 28126
diff changeset
258 2007-03-15 oset The function gl_oset_create_empty now takes a
f6df72989d3b Add an element disposal function.
Bruno Haible <bruno@clisp.org>
parents: 28126
diff changeset
259 array-oset third argument. You can pass NULL.
f6df72989d3b Add an element disposal function.
Bruno Haible <bruno@clisp.org>
parents: 28126
diff changeset
260 avltree-oset
f6df72989d3b Add an element disposal function.
Bruno Haible <bruno@clisp.org>
parents: 28126
diff changeset
261 rbtree-oset
f6df72989d3b Add an element disposal function.
Bruno Haible <bruno@clisp.org>
parents: 28126
diff changeset
262
28126
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
263 2007-03-12 des The types and functions in lib/des.h have been
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
264 gc-des renamed:
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
265
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
266 des_ctx -> gl_des_ctx, tripledes_ctx -> gl_3des_ctx,
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
267 des_is_weak_key -> gl_des_is_weak_key,
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
268 des_setkey -> gl_des_setkey,
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
269 des_makekey -> gl_des_makekey,
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
270 des_ecb_crypt -> gl_des_ecb_crypt,
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
271 des_ecb_encrypt -> gl_des_ecb_encrypt,
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
272 des_ecb_decrypt -> gl_des_ecb_decrypt,
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
273 tripledes_set2keys -> gl_3des_set2keys,
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
274 tripledes_set3keys -> gl_3des_set3keys,
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
275 tripledes_makekey -> gl_3des_makekey,
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
276 tripledes_ecb_crypt -> gl_3des_ecb_crypt.
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
277
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
278 Also consider using the "gc-des" buffer instead of
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
279 using the "des" module directly.
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
280
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
281 2007-02-28 xreadlink The module xreadlink was renamed to
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
282 xreadlink-with-size. The function was renamed:
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
283 xreadlink -> xreadlink_with_size.
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
284
28141
a5536043a1c4 * NEWS: Document stdlib change from 2007-02-18.
Eric Blake <ebb9@byu.net>
parents: 28138
diff changeset
285 2007-02-18 exit The modules now depend on stdlib, so replace
a5536043a1c4 * NEWS: Document stdlib change from 2007-02-18.
Eric Blake <ebb9@byu.net>
parents: 28138
diff changeset
286 mkdtemp #include "exit.h"
a5536043a1c4 * NEWS: Document stdlib change from 2007-02-18.
Eric Blake <ebb9@byu.net>
parents: 28138
diff changeset
287 mkstemp #include "mkdtemp.h"
a5536043a1c4 * NEWS: Document stdlib change from 2007-02-18.
Eric Blake <ebb9@byu.net>
parents: 28138
diff changeset
288 #include "mkstemp.h"
a5536043a1c4 * NEWS: Document stdlib change from 2007-02-18.
Eric Blake <ebb9@byu.net>
parents: 28138
diff changeset
289 with
a5536043a1c4 * NEWS: Document stdlib change from 2007-02-18.
Eric Blake <ebb9@byu.net>
parents: 28138
diff changeset
290 #include <stdlib.h>
a5536043a1c4 * NEWS: Document stdlib change from 2007-02-18.
Eric Blake <ebb9@byu.net>
parents: 28138
diff changeset
291
28138
d7210174fea6 Discuss strdup change.
Simon Josefsson <simon@josefsson.org>
parents: 28129
diff changeset
292 2007-01-26 strdup The module now depends on string, so replace
d7210174fea6 Discuss strdup change.
Simon Josefsson <simon@josefsson.org>
parents: 28129
diff changeset
293 #include "strdup.h"
d7210174fea6 Discuss strdup change.
Simon Josefsson <simon@josefsson.org>
parents: 28129
diff changeset
294 with
d7210174fea6 Discuss strdup change.
Simon Josefsson <simon@josefsson.org>
parents: 28129
diff changeset
295 #include <string.h>
d7210174fea6 Discuss strdup change.
Simon Josefsson <simon@josefsson.org>
parents: 28129
diff changeset
296
28126
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
297 # This is for Emacs.
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
298 # Local Variables:
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
299 # indent-tabs-mode: nil
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
300 # whitespace-check-buffer-indent: nil
b0ded0f22371 List of important user-visible changes.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
301 # End: