File libapr1.changes of Package libapr1 (Revision 78c153d5c98e62e10dbcaefd7e28007d)
Currently displaying revision 78c153d5c98e62e10dbcaefd7e28007d, show latest
1
-------------------------------------------------------------------
2
Sun Apr 10 08:36:32 UTC 2011 - cs@linux-administrator.com
3
4
- update to release 1.4.2
5
6
-------------------------------------------------------------------
7
Mon Nov 17 15:30:42 CET 2008 - ro@suse.de
8
9
- SLE-11 uses PPC64 instead of PPC, adapt baselibs.conf
10
11
-------------------------------------------------------------------
12
Fri Nov 14 17:43:46 CET 2008 - poeml@suse.de
13
14
- simplify the usage of the sles_version macro
15
16
-------------------------------------------------------------------
17
Thu Oct 30 14:20:27 CET 2008 - skh@suse.de
18
19
- obsolete old -XXbit packages (bnc#437293) (olh@suse.de)
20
21
-------------------------------------------------------------------
22
Tue Aug 19 11:22:44 CEST 2008 - poeml@suse.de
23
24
- update to 1.3.3 final
25
(updating to the release tarball, which has all the patches.)
26
27
-------------------------------------------------------------------
28
Sat Aug 9 02:51:54 CEST 2008 - poeml@suse.de
29
30
- add apr-1.3.2-r684091.patch
31
Backport r683771 from the trunk.
32
Fix APR_PID_T_FMT detection on Solaris.
33
- rename apr-1.3.3-patch to apr-1.3.3.patch
34
35
-------------------------------------------------------------------
36
Thu Aug 7 23:57:14 CEST 2008 - poeml@suse.de
37
38
- add post-1.3.2 patches (backports from trunk committed to the
39
1.3.x branch)
40
*) Rename apr_pool_create_core to apr_pool_create_unmanaged and
41
deprecate the old API name. It better reflects the scope and usage
42
of this function. [Mladen Turk]
43
*) Use proper return code for fcntl-based apr_proc_mutex_trylock()
44
on platforms that return EACCES instead of EAGAIN when the lock
45
is already held (AIX, HP-UX). [Eric Covener]
46
47
-------------------------------------------------------------------
48
Thu Aug 7 15:06:49 CEST 2008 - poeml@suse.de
49
50
- update to 1.3.2. Changes:
51
*) Fix getservbyname_r() detection. [Ruediger Pluem]
52
*) Fix win32 apr.hw to pick up XP/2003 TCP/IP multicast constants and
53
revert to IPV6 disabled-by-default (a change present only in 1.3.0).
54
[William Rowe]
55
*) Fix autoconf cached detection of atomic builtins. [Jim Jagielski]
56
*) Use thread safe versions of getservbyname(). [Bojan Smojver]
57
*) Use thread safe getpass_r on Netware. [Guenter Knauf]
58
59
-------------------------------------------------------------------
60
Thu Jul 17 20:04:27 CEST 2008 - poeml@suse.de
61
62
- skip testatomic testcase on sles9-x86_64 for now
63
64
-------------------------------------------------------------------
65
Thu Jul 17 14:08:19 CEST 2008 - poeml@suse.de
66
67
- workaround for ugly bug [bnc#400488]
68
Xen kernel on sles9 x86_64 is set up to behave different than all
69
other kernels
70
71
-------------------------------------------------------------------
72
Sun Jun 15 16:52:51 CEST 2008 - poeml@suse.de
73
74
- update to 1.3.0. Changes, with non-Linux relevant portions
75
omitted (see http://www.apache.org/dist/apr/CHANGES-APR-1.3 for
76
complete list):
77
*) apr_getservbyname(): Use proper method for converting port
78
to host byte order. PR 44903.
79
[Chris Taylor <ctaylor wadeford.plus.com>]
80
*) Use /dev/urandom in preference to /dev/random as entropy source
81
for apr_generate_random_bytes. PR 44881. [Bojan Smojver]
82
*) Introduce apr_pool_pre_cleanup_register() for registering
83
a cleanup that is called before any subpool is destroyed
84
within apr_pool_clear or apr_pool_destroy.
85
This allows to register a cleanup that will notify subpools
86
about its inevitable destruction.
87
[Mladen Turk]
88
*) Introduce apr_pool_create_core_ex() for creation of standalone
89
pools without parent. This function should be used for short
90
living pools, usually ones that are created and destroyed
91
either in a loop or inside function call. Since the pools
92
created with this function doesn't have a parent they must
93
be explicitly destroyed when done.
94
[Mladen Turk]
95
*) Fix return value when apr_pollset_poll interrupted.
96
PR 42580 [Basant Kumar Kukreja <basant.kukreja sun.com>]
97
*) Fix the make test target in the spec file. [Graham Leggett]
98
*) Introduce apr_file_pipe_create_ex() to portably permit one pipe
99
end or another to be entirely blocking for non-APR applications
100
(e.g. stdio streams) and the other (or both ends) non blocking,
101
with a timeout of 0 by default.
102
[William Rowe]
103
*) Introduce APR_NO_FILE as an option to apr_procattr_io_set() for any
104
of the three stdio streams to cause the corresponding streams to be
105
closed to the child process. This becomes effective in 1.3.0 across
106
platforms (equivilant to APR_NO_PIPE in 1.2.x except on Win32.)
107
[William Rowe]
108
*) Add table cloning (deep copy) convenience function.
109
[Davi Arnaut]
110
*) Stop invoking the testshm* helpers upon 'make test' invocation.
111
[Kurt Miller <kurt intricatesoftware.com>]
112
*) Register a cleanup only if APR_FILE_NOCLEANUP was not flagged in
113
apr_file_mktemp. [Brian J. France <list firehawksystems.com>]
114
*) Discard file buffers when running cleanups for exec.
115
PR 41119. [Davi Arnaut <davi haxent.com.br>, Bojan Smojver]
116
*) Improve thread safety of assorted file_io functions.
117
PR 42400. [Davi Arnaut <davi haxent.com.br>]
118
*) Add the apr_pollcb API as an alternative more efficient method
119
of polling sockets, compared to apr_pollset. [Paul Querna]
120
*) Fix possible crash in apr_pool_initialize() when built with
121
verbose pool debugging. PR 41063.
122
[Peter Steiner <peter.steiner+apache hugwi.ch>]
123
*) Fix --disable-ipv6 build on platforms with getifaddrs().
124
PR 39199. [Joe Orton]
125
*) Portably check for EEXIST in mktemp code. PR 40818
126
[Kenneth Golomb <KGolomb TradeCard.com>]
127
*) Fix apr_socket_recvfrom() to ensure the peer's address is returned
128
through the "from" parameter. [Joe Orton]
129
*) Fix error checking in kqueue, epoll and event port versions of
130
apr_pollset_create. PR 40660, 40661, 40662
131
[Larry Cipriani <lvc lucent.com>]
132
*) Add some documentation on the format matched by apr_fnmatch.
133
[David Glasser <glasser mit.edu>]
134
*) Add apr_hash_clear. [Daniel L. Rall <dlr apache.org>]
135
*) Don't try to build apr_app.c on MinGW.
136
[Matthias Miller <Blog outofhanwell.com>]
137
*) Fix the timeout converstion in apr_pollset with the KQueue
138
backend. [Marco Molteni <mmolteni cisco.com>]
139
*) Support MinGW. [John Vandenberg, Justin Erenkrantz]
140
*) Implement apr_thread_yield on Unix in terms of pthread_yield or
141
sched_yield. [Keisuke Nishida <keisuke.nishida gmail.com>]
142
*) Make apr_socket_recvfrom initialize the port field in the from
143
sockaddr. PR 39325 [Anthony Minessale <anthmct yahoo.com>]
144
*) NetBSD: Avoid leaving zombie process when using apr_signal()
145
to ignore SIGCHLD. PR 36750. [Todd Vierling <tv pobox.com>]
146
*) Implement support for apr_proc_mutex_trylock() on Unix platforms.
147
PR 38785. [Chris Darroch <chrisd pearsoncmg.com>]
148
*) APR_FIND_APR macro now supports customisable detailed checks on
149
each installed apr. [Justin Erenkrantz, Colm MacCarthaigh]
150
*) APR_FIND_APR macro no longer checks /usr/local/apache2/
151
[Colm MacCarthaigh]
152
*) Add APR_POLLSET_NOCOPY option to apr_pollset API to eliminate
153
O(n)-time lookup in apr_pollset_remove() (currently implemented
154
only for epoll). [Brian Pane]
155
*) Add apr_file_buffer_set() and apr_file_buffer_size_get() functions
156
to support variable buffer sizes with APR file handles.
157
[Colm MacCarthaigh]
158
*) Add apr_file_open_flags_std[err|out|in]() functions.
159
[Colm MacCarthaigh]
160
*) stdio: apr_file_open_std[err|out|in]() functions now set the APR_WRITE
161
or APR_READ flag as appropriate. [Colm MacCarthaigh]
162
*) multicast: apr_mcast_*() no longer return APR_ENOTIMPL when invoked
163
for non-UDP/RAW sockets. The caller is expected to ensure that the
164
socket-type is suitable for multicast. [Colm MacCarthaigh]
165
*) Add apr_sockaddr_ip_getbuf() function. [Joe Orton]
166
*) Fix handling of %pI in apr_psprintf. [Joe Orton]
167
*) Provide APR_VERSION_AT_LEAST() macro for applications which
168
want to enable features based on a required level of APR.
169
[Jeff Trawick]
170
*) jlibtool: Teach to use static libraries with -static.
171
[Justin Erenkrantz]
172
*) Fix checks for alloca() support in configure. PR 13037.
173
[Noah Misch <noah cs.caltech.edu>]
174
*) Add %pm support to apr_snprintf() for printing the error string
175
corresponding to an apr_status_t value. [Joe Orton]
176
*) Add APR_ARRAY_IDX() and APR_ARRAY_PUSH() convenience macros to
177
apr_tables.h. [Garrett Rooney]
178
- fix testshm testcase
179
- remove manual addition of -g, since the OBS takes care of it now.
180
181
-------------------------------------------------------------------
182
Mon Jun 9 17:15:18 CEST 2008 - poeml@suse.de
183
184
- build service supports the debuginfo flag in metadata now; remove
185
debug_package macro from the specfile therefore.
186
187
-------------------------------------------------------------------
188
Tue Apr 15 16:36:44 CEST 2008 - schwab@suse.de
189
190
- Don't use autoreconf.
191
192
-------------------------------------------------------------------
193
Thu Apr 10 12:54:45 CEST 2008 - ro@suse.de
194
195
- added baselibs.conf file to build xxbit packages
196
for multilib support
197
198
-------------------------------------------------------------------
199
Tue Nov 27 00:55:05 CET 2007 - poeml@suse.de
200
201
- update to 1.2.12 (only changes relevant on Linux listed here):
202
*) Numerous fixes to the test/ framework, including better handling of
203
long size_t comparisons and more consistent Makefile.(in|win) setup
204
for authoring new tests. [William Rowe]
205
*) Fix --disable-ipv6 build on platforms with getifaddrs().
206
PR 39199. [Joe Orton]
207
*) Define apr_ino_t in such a way that it doesn't change definition
208
based on the library consumer's -D'efines to the filesystem.
209
[Lucian Adrian Grijincu <lucian.grijincu gmail.com>]
210
*) Fill in apr_fileinfo_t member st_csize on Netware and Unix (PR 41678),
211
and refine the file times down to apr_time_t resolution if supported
212
by a st_atimensec or st_atim.tv_nsec value by the OS. Additional
213
msec implementations are possible if exposed through autoconf.
214
[William Rowe, Nicklas Edmundsson <nikke acc.umu.se>]
215
*) Fix apr_socket_recvfrom() to ensure the peer's port and address
216
is returned through the "from" parameter on Unix and Win32.
217
[Joe Orton, William Rowe]
218
219
-------------------------------------------------------------------
220
Wed Sep 12 15:17:53 CEST 2007 - poeml@suse.de
221
222
- fix missing endif in build section, fixing build on Mandriva
223
(went unnoticed on openSUSE)
224
- use debug_package macro only on suse, because it breaks the build
225
on Mandriva
226
227
-------------------------------------------------------------------
228
Wed Sep 12 11:41:19 CEST 2007 - poeml@suse.de
229
230
- don't run autoreconf -fi on build platforms older than 10.3. The
231
'i' in that replaces config.guess, config.sub, ltmain.sh (dated
232
2007) with versions from, say, 2005. This will lead to a
233
miscompile on SLE10 for instance (segfault in apr_initialize())
234
- don't apply the cleanup apr-1.2.8-pool-cleanups.patch when built
235
with build_with_memory_pool_debug for now
236
237
-------------------------------------------------------------------
238
Mon Sep 10 14:30:44 CEST 2007 - poeml@suse.de
239
240
- update to 1.2.11:
241
*) Win32 apr_file_read; Correctly handle completion-based read-to-EOF.
242
[Steven Naim <steven.naim googlemail.com>]
243
*) Fixed Win32 regression of stdout inheritance in apr_proc_create.
244
[William Rowe]
245
*) Solve winNT inherited pipe leaks by mutexing apr_proc_create calls,
246
on WinNT (not WinCE, nor 9x) so that we toggle the inherited state
247
of the stdin/out/err pipes. All other file handles are treated as
248
not-inherited until apr_file_dup2'ed a std handle of this process,
249
or while they are used by apr_proc_create. [William Rowe]
250
*) Define the Mac OS/X filesystem_encoding as utf-8 (in previous
251
releases the interpretation would vary). [Erik Huelsmann
252
<ehuels gmail.com>]
253
*) Fix day of year (tm_day) calculation for July. The bug only affects
254
Windows builds. PR 42953. [Davi Arnaut]
255
*) Fix LFS detection when building over NFS. The mode must be
256
specified when O_CREAT is in the flags to open().
257
PR 42821. [Rainer Jung <rainer.jung kippdata.de>]
258
*) Avoid overwriting the hash_mutex table for applications that
259
incorrectly calls apr_atomic_init(). PR 42760. [Davi Arnaut]
260
*) Allow IPv6 connectivity test to fail, avoiding a potentially fatal
261
error. [Davi Arnaut]
262
*) The MinGW Windows headers effectively redefines WINADVAPI from
263
__stdcall to empty which results in a link failure when wincrypt.h
264
is placed after an include to apr_private.h.
265
PR 42293. [Curt Arnold]
266
*) Define SEM_FAILED if it isn't already defined, as the proc mutex
267
code already does it. Also search for the sem_open function in
268
the realtime library. (This fixes HP-UX sem_open detection).
269
[Davi Arnaut]
270
*) Define the _HPUX_SOURCE feature test macro to obtain maximum
271
functionality. Fixes broken sendfile with LFS support on HP-UX.
272
PR 42261. [Davi Arnaut]
273
274
-------------------------------------------------------------------
275
Tue Aug 21 06:32:00 CEST 2007 - crrodriguez@suse.de
276
277
- first attempt to remove static libraries and libtool crap.
278
279
-------------------------------------------------------------------
280
Mon Aug 20 15:49:06 CEST 2007 - poeml@suse.de
281
282
- on SLES9, use 'autoheader; autoconf' to configure, as before,
283
instead of autoreconf -fi, which won't work
284
285
-------------------------------------------------------------------
286
Mon Aug 13 01:56:32 CEST 2007 - crrodriguez@suse.de
287
288
- apr 1.2.9
289
*) Stop invoking the testshm* helpers upon 'make test' invocation.
290
*) Register a cleanup only if APR_FILE_NOCLEANUP was not flagged in
291
apr_file_mktemp.
292
*) Discard file buffers when running cleanups for exec.
293
PR 41119.
294
*) If apr_proc_create() fails to exec in the fork()ed child, call
295
_exit() not exit() to avoid running atexit()-registered functions
296
in the child.
297
*) Improve thread safety of assorted file_io functions.
298
*) Fix file pointer position calculation in apr_file_writev() on
299
buffered file.
300
*) Fix formatting of unsigned integers larger than 2^63 in the
301
vformatter/apr_*printf.
302
*) Fix possible EFAULT failures in apr_socket_sendfile() on 32-bit
303
Solaris with LFS enabled
304
*) Fix deadlock in apr_file_gets() for a file opened with both the
305
APR_BUFFERED and APR_XTHREAD flags.
306
- run make ceck in the rpm check section
307
- add missing glibc-devel dependency to -devel package
308
-------------------------------------------------------------------
309
Wed Jul 18 19:53:51 CEST 2007 - poeml@suse.de
310
311
- if the rpm macro build_with_memory_pool_debug is defined, build
312
with --enable-pool-debug=verbose-alloc. (This is the case in the
313
Apache-Pool-Debug buildservice project.)
314
- add apr-1.2.8-pool-cleanups.patch: don't run cleanup handlers
315
_after_ destroying subpools
316
- add debug_package macro in buildservice (will soon be obsolete)
317
318
-------------------------------------------------------------------
319
Wed May 2 14:05:42 CEST 2007 - dmueller@suse.de
320
321
- Fix comparison with string literal
322
323
-------------------------------------------------------------------
324
Mon Dec 11 15:54:14 CET 2006 - poeml@suse.de
325
326
- update to 1.2.8
327
*) Correctly retrieve 'empty' environment values with apr_env_get
328
on Win32 (e.g. "VAR="), and added validation to testall suite.
329
*) APR_FIND_APR macro no longer checks /usr/local/apache2/.
330
*) Portably check for EEXIST in mktemp code. PR 40818
331
*) Fix apr_snprintf/apr_vsnprintf return value to not count the
332
NUL terminator in the overflow case. PR 39996.
333
*) Fix detection of pthread cross-process robust mutexes.
334
*) NetBSD: Avoid leaving zombie process when using apr_signal()
335
to ignore SIGCHLD.
336
*) Fix apr_socket_sendv() for platforms without writev.
337
*) Avoid issues using >2Gb of data per call with sendfile() on
338
64-bit Linux platforms.
339
340
-------------------------------------------------------------------
341
Fri Oct 27 20:39:36 CEST 2006 - poeml@suse.de
342
343
- replace wrong configure switch --with-includedir with the correct
344
one: --includedir. This fixes installation of the header files to
345
/usr/include/apr-1 instead of /usr/include. [#164770]
346
347
-------------------------------------------------------------------
348
Thu Jun 22 12:12:55 CEST 2006 - schwab@suse.de
349
350
- Don't depend on configure args being preserved.
351
352
-------------------------------------------------------------------
353
Wed May 24 13:02:34 CEST 2006 - poeml@suse.de
354
355
- update to 1.2.7
356
* fixes for netware and win32
357
- update to 1.2.6
358
* bugfixes for libuuid, mutex, kqueue, ...
359
- use %suse_version to build doxygen documentation only on SUSE
360
361
-------------------------------------------------------------------
362
Wed Jan 25 21:37:22 CET 2006 - mls@suse.de
363
364
- converted neededforbuild to BuildRequires
365
366
-------------------------------------------------------------------
367
Mon Jan 9 12:50:36 CET 2006 - poeml@suse.de
368
369
- don't use pthread_mutexattr_setrobust_np() unless
370
pthread_mutexattr_setprotocol() is available as well (the former
371
is in glibc since 2005-12-26, but the latter not)
372
373
-------------------------------------------------------------------
374
Wed Oct 12 16:17:00 CEST 2005 - poeml@suse.de
375
376
- update to 1.2.2
377
378
-------------------------------------------------------------------
379
Thu Sep 29 15:23:04 CEST 2005 - poeml@suse.de
380
381
- update to 1.2.1
382
- add -fno-strict-aliasing to CFLAGS
383
- add -DLDAP_DEPRECATED to CFLAGS
384
385
-------------------------------------------------------------------
386
Fri Apr 8 11:39:46 CEST 2005 - uli@suse.de
387
388
- disabled test suite for ARM (may hang QEMU)
389
390
-------------------------------------------------------------------
391
Thu Mar 24 12:59:36 CET 2005 - poeml@suse.de
392
393
- update to 1.1.1
394
395
-------------------------------------------------------------------
396
Fri Feb 25 01:02:52 CET 2005 - poeml@suse.de
397
398
- package created (1.1.0)
399
400