Changelog for
libapr1-1.6.5-35.1.i586.rpm :
* Fri Feb 08 2019 Petr Gajdos
- increase timeout to fix random failure of testsuite + apr-test-sendfile-timeout.patch- fix build for SLE11 again
* Thu Feb 07 2019 Petr Gajdos - linux version is now checked correctly, drop - apr-1.4.5-linux3.patch (see change log from Sun Aug 7 01:21:44 UTC 2011)
* Wed Jan 16 2019 Tomáš Chvátal - Update keyring to match current release maintainer
* Thu Oct 18 2018 Manu Maier - Version 1.6.5
* Fix Win32 build breakage in apr_os_exp_time_put() in 1.6.4. [Rainer Jung]- Version 1.6.4
* configure: Fix detection of on OpenBSD. PR 61976. [David Carlier , Yann Ylavic]
* Fix apr_parse_addr_port() regression in scope_id parsing introduced in 1.6.3. [Rainer Jung]
* Fix Win32 file buffer locking behavior for single threaded file streams. [Evgeny Kotkov, Mladen Turk, Jean-Frederic Clere]
* Numerous corrections to APR poll behavior. [Yann Ylavic]- Drop patch gcc8-integer-overflow.patch merged upstream
* Thu May 10 2018 matwey.kornilovAATTgmail.com- Version 1.6.3:
* apr_file_trunc: Truncating a buffered file could add unexpected data after the truncate position. PR 51017.
* apr_file_trunc: Fix an issue where reading from a buffered file after truncate could return stale data from the buffer.
* apr_ipsubnet_create() now fails for an empty input string.- fixes [bsc#1092981]
* Wed Apr 18 2018 mliskaAATTsuse.cz- Add gcc8-integer-overflow.patch to handle an undefined behavior (boo#1090085).
* Tue Jan 23 2018 normandAATTlinux.vnet.ibm.com- ignore PowerPC transient test failures
* Tue Nov 07 2017 mpluskalAATTsuse.com- Do not require python for building - its not needed anyways (fate#323526)
* Mon Oct 16 2017 mpluskalAATTsuse.com- We need to obsolete same version of package (bsc#1063305)
* Mon Jul 10 2017 jengelhAATTinai.de- Replace vision statement in %description with feature list. Fix RPM groups.- Drop --with-pic which is only useful for static libs.
* Thu Jun 22 2017 mpluskalAATTsuse.com- Rename package
* Mon Jun 19 2017 crrodriguezAATTopensuse.org- apr 1.6.2
* apr_allocator: Provide apr_allocator_align()
* apr_file_io: Add apr_file_pipe_create_pools()
* Add APR_SO_FREEBIND option for apr_socket_opt_set.
* apr_skiplist: Add apr_skiplist_addne
*()
* Added Unix domain socket support.
* See http://www.apache.org/dist/apr/CHANGES-APR-1.6 for a full list of changes.- Drop patches from upstream:
* 0017-Merge-r1733694-r1733708-from-trunk.patch
* 0018-apr_proc_mutex-unix-backport-r1733775-from-trunk-par.patch
* Wed Jun 14 2017 crrodriguezAATTopensuse.org- define READDIR_IS_THREAD_SAFE, because it is. Avoid using obsolete and potentially dangerous readdir_r.
* Wed May 04 2016 crrodriguezAATTopensuse.org- 0017-Merge-r1733694-r1733708-from-trunk.patch and 0018-apr_proc_mutex-unix-backport-r1733775-from-trunk-par.patch Refcount shared mutexes usage to avoid destruction while still is use by some processes, this fixes apache graceful-restart sometimes leaving processes in \"Gracefully finishing\" state forever.- apr-proc-mutex-map-anon.patch use MAP_ANON instead of mmap\'ing /dev/zero.
* Tue Sep 29 2015 mpluskalAATTsuse.com- Add gpg signature
* Sun May 03 2015 crrodriguezAATTopensuse.org- remove baselibs.conf that osc rejects now with message: ERROR: \'arch\' referenced in baselibs.conf is not being built ERROR: \'ppc\' referenced in baselibs.conf is not being built ERROR: \'package\' referenced in baselibs.conf is not being built ERROR: \'arch\' referenced in baselibs.conf is not being built ERROR: \'ppc\' referenced in baselibs.conf is not being built ERROR: \'package\' referenced in baselibs.conf is not being built
* Sun May 03 2015 crrodriguezAATTopensuse.org- apr 1.5.2
* apr_escape: Correctly calculate the size of the returned string in apr_escape_path and set the correct return value in case we actually escape the string
* apr_poll(cb): fix error paths returned values and leaks.
* apr_skiplist: Optimize the number of allocations by reusing pooled or malloc()ed nodes for the lifetime of the skiplist.
* apr_skiplist: Fix possible multiple-free() on the same value in apr_skiplist_remove_all() (obsoletes 0007-backport-r1604596-1604598-from-trunk.patch)
* apr_global_mutex/apr_proc_mutex: Resolve failures with the POSIX sem implementation in environments which receive signals. (obsoletes 0009-Merge-r1610854-from-trunk.patch)
* drop already included or no longer needed patches: 0004-Backport-r1593600-from-1.6.patch 0005-Backport-r1593612-from-1.6.patch 0007-backport-r1604596-1604598-from-trunk.patch 0009-Merge-r1610854-from-trunk.patch string-compare.diff
* Sun Mar 08 2015 crrodriguezAATTopensuse.org- No longer use --enable-allocator-uses-mmap but the default which is using malloc, this feature exists to reduce fragmentation but this is currently at the expense of:
* Loosing all malloc sanity checks.
* mmap and munmap are expensive operations when using at lot of threads (like in apache worker,event)
* It will waste memory, even more on archs that have big page sizes.- If there are fragmentation or performance problems in glibc malloc, the library has to be fixed instead.
* Sat Mar 07 2015 crrodriguezAATTopensuse.org- apr-use-getrandom.patch: Update, if getrandom blocks, fallback to the old codepath, restoring old always non-blocking behaviour in practice it blocks only at boottime when the entropy pool has not been fully initialized, this delays the startup of apache for example.
* Use SYS_getrandom constant instead of the \"internal\" __NR_getrandom
* Sun Oct 19 2014 crrodriguezAATTopensuse.org- apr-use-getrandom.patch Use the new getrandom() system call in apr_generate_random_bytes() if the system call number is defined and if the call is sucessful, fallback if otherwise.