⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 changes

📁 Apache官方在今天放出产品系列2.2的最新版本2.2.11的源码包 最流行的HTTP服务器软件之一
💻
📖 第 1 页 / 共 3 页
字号:
                                                     -*- coding: utf-8 -*-Changes with APR-util 1.3.4  *) Fix a memory leak introduced in r683756 and a free call to a non malloced     pointer in the case that the platform has no threads.     [Jeff Trawick, Ruediger Pluem]Changes with APR-util 1.3.3  *) Add Berkeley DB 4.7 support.     [Arfrever Frehtes Taifersar Arahesis <arfrever.fta gmail.com>]  *) PostgreSQL rows (internally) start from zero, not one. Account for it in     row fetching function. [Bojan Smojver]  *) Detection of PostgreSQL may fail if LIBS contains all libs returned by     pg_config. Use it only as the last resort. [Bojan Smojver]  *) When searching for DSOs, look in apr-util-APU_MAJOR_VERSION subdirectory     of each component of APR_DSOPATH. PR 45327     [Joe Orton, William Rowe, Bojan Smojver]  *) Give MySQL DBD driver reconnect option. PR 45407     [Bojan Smojver]Changes with APR-util 1.3.2  *) Fix parameter parsing error in ODBC DBD driver.  [Tom Donovan]  *) Older OpenLDAP implementations may have ldap_set_rebind_proc() with two     args. Provide detection code and alternative implementation.     [Ruediger Pluem]  *) Use pool memory when setting DBD driver name into the hash.     [Bojan Smojver]Changes with APR-util 1.3.1  *) Add ODBC DBD Driver.  [Tom Donovan]  *) Fix build of the FreeTDS and MySQL drivers.  [Bojan Smojver]  *) Fix build failure for no modules (--disable-dso).  [Jean-Frederic Clere]  *) Fix win32 build failure for no modules (empty DBD_LIST).  [William Rowe]Changes with APR-util 1.3.0  *) apr_reslist: destroy all resources in apr_cleanup (don't give up on error).     PR 45086 [Nick Kew]  *) Add apr_brigade_split_ex for reusing existing brigades in situation where     brigades need to be split often during the lifetime of a pool.     [Ruediger Pluem]  *) Amend apr_reslist to expire resources whose idle time exceeds ttl.     PR 42841 [Tom Donovan, Nick Kew, Ruediger Pluem]  *) Modularize ldap's stub with the dbd dso modular structure, and teach     the apu dso's to respect the system specific shared lib path var.     To link to an application without ldap libs, query      `apu-1-config --avoid-ldap --libs` (in addition to the usual linker     queries for compiling and linking).  [William Rowe]  *) Support building DBD drivers as DSOs by default; use --disable-util-dso     flag to configure to use static link.  [Joe Orton, Bojan Smojver]  *) All DBD drivers now count rows from 1, which affects PostgreSQL and MySQL     drivers in particular. Using row number zero is an error.     [Bojan Smojver]  *) Add support for OpenLDAP's ability to support a directory of     certificate authorities. [Eric Covener]  *) Better error detection for bucket allocation failures.     [Jim Jagielski]  *) Ensure that the LDAP code can compile cleanly on platforms that do     not define the LDAP_OPT_REFHOPLIMIT symbol, most specifically Windows.     [Victor <victorjss@gmail.com>, Graham Leggett]  *) Fix the setting of LDAP_OPT_SSL on Win2k, which expects a pointer to     the value LDAP_OPT_ON, and not the value itself. XP works with both.     [Victor <victorjss@gmail.com>]  *) Fix a regression in apr_brigade_partition that causes integer overflows     on systems where apr_off_t > apr_size_t.  [Ruediger Pluem]  *) Ensure that apr_uri_unparse does not add scheme to URI if     APR_URI_UNP_OMITSITEPART flag is set. PR 44044     [Michael Clark <michael metaparadigm.com>]  *) Add an LDAP rebind implementation so that authentication can be     carried through referrals. [Paul J. Reder]  *) Fix the make test target in the spec file. [Graham Leggett]  *) Introduce apr_dbd_open_ex() [Bojan Smojver]  *) Make md5 hash files portable between EBCDIC and ASCII platforms       [David Jones]  *) Add limited apr_dbd_freetds driver (MSSQL and Sybase) [Nick Kew]  *) Commit relicensed apr_dbd_mysql driver to /trunk/  [Nick Kew]  *) Support BerkeleyDB 4.6.  [Arfrever Frehtes Taifersar Arahesis]  *) Support Tivoli ITDS LDAP client library.  [Paul Reder]  *) Portably implement testdate's long-time constants to solve     compilation faults where #LL isn't valid.  [Curt Arnold]  *) Use buffered I/O with SDBM.  [Joe Schaefer]  *) Unify parsing of prepared statements and add binary argument functions     to DBD [Bojan Smojver with help from many on the APR list]  *) Rewrite detection of expat in configure to fix build on e.g. biarch     Linux platforms.  PR 28205.  [Joe Orton]  *) Add apr_thread_pool implementation.  [Henry Jen <henryjen ztune.net>]  *) Add support for Berkeley DB 4.5 to the configure scripts.     [Garrett Rooney]  *) Allow apr_queue.h to be included before other APR headers.     PR 40891 [Henry Jen <henryjen ztune.net>]  *) Fix precedence problem in error checking for sdbm dbm back end.     PR 40659 [Larry Cipriani <lvc lucent.com>]  *) Add an apr_reslist_acquired_count, for determining how many outstanding     resources there are in a reslist.  [Ryan Phillips <ryan trolocsis.com>]  *) Provide folding in autogenerated .manifest files for Win32 builders     using VisualStudio 2005  [William Rowe]  *) Implement DBD transaction modes     [Bojan Smojver with help from many on the APR list]  *) Implement prepared statement support in SQLite3 DBD driver     [Bojan Smojver]  *) Add get (column) name to apr_dbd API     [Bojan Smojver <bojan rexursive.com>] and     [Chris Darroch <chrisd pearsoncmg com>]  *) Make the DBD autoconf-glue use LDFLAGS instead of LIBS in several     places, fixing some configure issues on Solaris.     [Henry Jen <henryjen ztune.net>]  *) Make apr_dbd.h work as a stand alone header, without needing other     files to be included before it. [Henry Jen <henryjen ztune.net>]  *) On platforms that use autoconf stop automatically linking against     apr-iconv when an apr-iconv source dir is found in ../apr-iconv.     Instead, add a --with-apr-iconv option to configure that lets you     specify the relative path to your apr-iconv source directory.     [Garrett Rooney]  *) APR_FIND_APU macro now supports customisable detailed checks on     each installed apr-util. [Justin Erenkrantz, Colm MacCárthaigh]  *) APR_FIND_APU macro no longer checks /usr/local/apache2/     [Colm MacCárthaigh]  *) Add apr_dbd_oracle driver [Nick Kew and Chris Darroch]Changes with APR-util 1.2.8  *) Fix incorrect byte order (PR 37342) and incorrect timestamp type     in the fallback UUID generator used when no external UUID generator     is detected by APR.     [Max Bowsher]Changes with APR-util 1.2.7  *) Fix apr_dbd_init to be safe to call multiple times     [Bojan Smojver <bojan rexursive com>, Nick Kew]  *) Win32 / Netware - add missing apu_version.c for apu_version_string()     to the Windows and Netware specific builds.  Unix platforms supported     this API since 0.9.1.  [William Rowe, Brad Nicholes].Changes with APR-util 1.2.6  *) Stop trying to link against Berkeley DB by default.  To enable use     of Berkeley DB users must now explicitly pass --with-berkeley-db to     configure, since Berkeley DB is released under a viral license that     requires distribution of source code for any program that uses it.     [Garrett Rooney]  *) Stop trying to link against GDBM by default.  To enable use of GDBM     users must now explicitly pass --with-gdbm to configure, since GDBM     is licensed under the GPL.     [Garrett Rooney]  *) Fix VPATH builds, and symlink builds where apr and apr-util     reside in parallel as symlinks to directories with more explicit     names, e.g. apr-1.x and apr-util-1.x.  This solves various breakage     on Solaris in particular with ./buildconf and ./configure.  Also     eliminated the nested ../apr-iconv/buildconf, given that apr-util     didn't bother with ../apr/buildconf, and this was inconsistant.     [William Rowe]  *) Fix the escape implementations for the sqlite2 and sqlite3 dbd     back ends.     [Ronen Mizrahi <ronen tversity.com>, Garrett Rooney]  *) Add support for Berkeley DB 4.4 to the configure scripts.     [Garrett Rooney]  *) Fix bug in test suite that cause testbuckets to write 8GB file     on Mac OS X.  [Justin Erenkrantz]Changes with APR-util 1.2.2  *) Teach configure how to find the Novell LDAP SDK. [Graham Leggett]   *) Fix usage of ldapssl_init/ldap_sslinit on platforms that support     these API's including Win32.  Support APR_HAS_LDAP_START_TLS_S     flag in the Win32 LDAP API, to drop usage of ldap_start_ssl_s     and ldap_stop_ssl_s on Win32 by default (change the flag in apr_ldap.hw     to enable if supported on a given OS level). [William Rowe]Changes with APR-util 1.2.1  *) Fix apr_rmm_realloc() offset calculation bug.  [Keith Kelleman     <keith.kelleman oracle.com>]  *) Add sqlite3 support to APR DBD. [Rick Keiner <rick_keiner yahoo.com>]  *) Fix build failure with non-threaded APR on AIX.  PR 34655.     [Ryan Murray <rmurray+apache cyberhqz.com>]  *) Add sqlite2 support to APR DBD. [Ryan Phillips <ryan trolocsis.com>]  *) Introduction of APR DBD layer.  [Nick Kew]Changes with APR-util 1.1.2  *) Fix libaprutil.rc for Win32 builds [William Rowe, Justin Erenkrantz]Changes with APR-util 1.1.1  *) Fix memory leak in buckets when using APR_POOL_DEBUG mode. [Joe Schaefer]  *) find_apu.m4: Try installed APR-util before bundled copy if --with-apr-util     not passed to configure.  [Justin Erenkrantz] Changes with APR-util 1.1.0  *) LDAP: Move all certificate initialisation, and the creation of SSL     and TLS connections into the apr_ldap_set_option() API. Add support     for client certificates. [Graham Leggett]   *) Emit the run-time link path option in apu-config after installation     if the user is linking with libtool.  [Justin Erenkrantz]

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -