summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo noticed by Mike Rumph.1.0.xrjung2013-12-141-3/+3
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@1550913 13f79535-47bb-0310-9956-ffa450edef68
* Changes reflect major/minor related changes. Providejim2009-09-251-1665/+2
| | | | | | | links to other versions. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@819018 13f79535-47bb-0310-9956-ffa450edef68
* lazy initialization of the pollset within apr_file_t (backport from 1.2)brianp2005-07-236-34/+54
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@224440 13f79535-47bb-0310-9956-ffa450edef68
* add a proposed backport from 1.2brianp2005-07-161-0/+9
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@219286 13f79535-47bb-0310-9956-ffa450edef68
* Bug #33844: OS/2: file opened with APR_CREATE would be truncated if APR_APPENDbjh2005-07-041-6/+4
| | | | | | | | | wasn't also given. Backport from trunk of r180013 git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@209046 13f79535-47bb-0310-9956-ffa450edef68
* OS/2: Fix crash in apr_proc_create with non-shell type process creation wherebjh2005-07-031-1/+2
| | | | | | | | | | the .exe extension is not given. Was trying to close an apr_file_t that had failed to open, causing a segfault. Backport from trunk of r208879. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@208882 13f79535-47bb-0310-9956-ffa450edef68
* OS/2: Using apr_file_rename() to replace one file with another doesn't workbjh2005-06-291-1/+1
| | | | | | | | | | | on some types of network drive as the file system driver returns a different error code when an attempt is made to rename to an existing file name. Allow for this error code, ERROR_ALREADY_EXISTS. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@202352 13f79535-47bb-0310-9956-ffa450edef68
* Support APR_SO_SNDBUF and APR_SO_RCVBUF on Windows.trawick2005-06-142-0/+15
| | | | | | | | PR: 32177 Submitted by: Sim <sgobbi datamanagement.it>, Jeff Trawick git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@190580 13f79535-47bb-0310-9956-ffa450edef68
* send and receive buffer sizes are not flags, and callertrawick2005-06-141-10/+4
| | | | | | | | | | | | | | | may pass different values on different calls; so don't try to optimize this setsockopt() SO_LINGER is an odd one; the real setsockopt provides a configurable value for the timeout; but with APR, this is a flag and the timeout is hardcoded; so the optimization stays for this one Reviewed by: Joe Orton git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@190572 13f79535-47bb-0310-9956-ffa450edef68
* Merge r179786 from trunk:jorton2005-06-031-1/+8
| | | | | | | | | | * build/apr_network.m4 (APR_CHECK_SCTP): Fix check for SCTP. PR: 35021 Submitted by: Lee Begg <llnz paradise.net.nz> git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@179788 13f79535-47bb-0310-9956-ffa450edef68
* Disable poll() on all Darwin versions for now, because it is either broken ↵wsanchez2005-05-311-2/+1
| | | | | | or weak sauce. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@179280 13f79535-47bb-0310-9956-ffa450edef68
* Backport r178340 from trunk:wsanchez2005-05-282-16/+19
| | | | | | | | | | | | | | | | network_io/unix/sendrecv.c: Deal with EAGAIN after poll(). Following apr_wait_for_io_or_timeout(), we were doing I/O and not dealing with EAGAIN. It is legal for poll() to indicate that a socket is available for writing and then for write() to fail with EAGAIN if the state of the socket changed in between the poll() and write() calls. This only seems to actually happen on Mac OS 10.4 (Darwin 8). Rather than trying write() only once, if we get an EAGAIN, continue to call apr_wait_for_io_or_timeout() and try writing. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@178843 13f79535-47bb-0310-9956-ffa450edef68
* fix typojwoolley2005-05-261-1/+1
| | | | | | | Submitted by: dlr git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@178705 13f79535-47bb-0310-9956-ffa450edef68
* Merge r178386 from trunk:jorton2005-05-251-0/+2
| | | | | | | | | * build/apr_hints.m4 (APR_PRELOAD): Prevent use of poll() on Darwin. PR: 34332, 29985 git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@178388 13f79535-47bb-0310-9956-ffa450edef68
* Merge r170395 from trunk:jorton2005-05-161-19/+25
| | | | | | | | | | * threadproc/unix/proc.c (apr_procattr_child_in_set, apr_procattr_child_out_set, apr_procattr_child_err_set): Add error checking: fixes segfaults in applications when pipe() or dup2() fail (e.g. due to ulimit settings). git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@170397 13f79535-47bb-0310-9956-ffa450edef68
* Merge r168607 from trunk:jorton2005-05-061-0/+2
| | | | | | | | | | | Committed to 0.9.x but missing from HEAD: * build/apr_hints.m4 (APR_PRELOAD): NetBSD fcntl() confounds O_NONBLOCK inheritance test, so work around it. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@168608 13f79535-47bb-0310-9956-ffa450edef68
* Temporarily work around a conflict between 0.9 and 1.0 of apr.expminfrin2005-01-171-0/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@125414 13f79535-47bb-0310-9956-ffa450edef68
* Merge r125069 from trunk:jorton2005-01-131-2/+2
| | | | | | | | | * build/find_apr.m4 (APR_FIND_APR): Do look for apr-config in the default APR installation prefix. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@125072 13f79535-47bb-0310-9956-ffa450edef68
* Add the major version number to the package name so that packages can be ↵minfrin2005-01-061-1/+1
| | | | | | installed in parallel. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@124438 13f79535-47bb-0310-9956-ffa450edef68
* Oops - Justin committed this change to apr trunk just over a month ago.minfrin2005-01-041-1/+2
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@124099 13f79535-47bb-0310-9956-ffa450edef68
* Make install passed a shell expanded list of header files to theminfrin2005-01-042-1/+7
| | | | | | | | build/install.sh script, which can only install one file at a time. Changed to install one header file at a time. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@124097 13f79535-47bb-0310-9956-ffa450edef68
* Add a build script to create a solaris package.minfrin2004-12-165-0/+104
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@112366 13f79535-47bb-0310-9956-ffa450edef68
* Note patches for a NetWare breakage.bnicholes2004-12-091-0/+4
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@111414 13f79535-47bb-0310-9956-ffa450edef68
* Allow APR-UTIL to exist and build outside of the httpd/srclib file structurebnicholes2004-12-0712-24/+24
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@111154 13f79535-47bb-0310-9956-ffa450edef68
* Fixing various compiler errors when compiling against the latest version of ↵bnicholes2004-11-292-2/+2
| | | | | | LibC SDK git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@106967 13f79535-47bb-0310-9956-ffa450edef68
* property cleanupnd2004-11-243-2/+2
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@106493 13f79535-47bb-0310-9956-ffa450edef68
* drop .cvsignore filesnd2004-11-2440-252/+0
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@106484 13f79535-47bb-0310-9956-ffa450edef68
* Merge r76119 from trunk:jorton2004-11-171-2/+2
| | | | | | | | | | | | | | Fix enabling of signal blocking and unblocking code. * apr/threadproc/unix/signals.c (apr_signal_block, apr_signal_unblock): Test the correct symbol, so that these functions will actually be implemented on appropriate platforms. Submitted by: Julian Foad <julianfoad btopenworld.com> git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@76126 13f79535-47bb-0310-9956-ffa450edef68
* Bump version to 1.0.2-devjerenkrantz2004-11-172-2/+4
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@76078 13f79535-47bb-0310-9956-ffa450edef68
* * include/apr_version.h: Bump to 1.0.1.jerenkrantz2004-11-171-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@76073 13f79535-47bb-0310-9956-ffa450edef68
* Merge in changes from trunk to 1.0.x.jerenkrantz2004-11-1740-177/+596
| | | | | | | | Changes have been reviewed to be binary compatible with 1.0.0 by Justin to the best of his sleep-deprived ability. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@76072 13f79535-47bb-0310-9956-ffa450edef68
* Create 1.0.x branch from 1.0.0 release tag. (Yay SVN!)jerenkrantz2004-11-170-0/+0
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@76063 13f79535-47bb-0310-9956-ffa450edef68
* This commit was manufactured by cvs2svn to create tag 'APR_1_0_0'.APR_1_0_0(no author)2004-08-2411-386/+20
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/tags/APR_1_0_0@65309 13f79535-47bb-0310-9956-ffa450edef68
* * Makefile.in (install): Simplify; use INSTALL and INSTALL_DATA ratherjorton2004-08-201-34/+17
| | | | | | | than cp; use APR_MKDIR. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65306 13f79535-47bb-0310-9956-ffa450edef68
* Improve support for configure --silent (aka --quiet):jorton2004-08-191-8/+13
| | | | | | | | | | | | * build/apr_common.m4 (APR_SUBDIR_CONFIG): Explicitly pass --silent down to sub-configure. (APR_SETIFNULL, APR_ADDTO, APR_REMOVEFROM, APR_SETVAR, APR_RESTORE_THE_ENVIRONMENT): Don't print messages if invoked with --silent. PR: 30725 git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65305 13f79535-47bb-0310-9956-ffa450edef68
* Spelling fix.jorton2004-08-181-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65304 13f79535-47bb-0310-9956-ffa450edef68
* * build/apr_hints.m4 (APR_PRELOAD): Don't preempt APR_PTHREADS_CHECKjorton2004-08-121-1/+1
| | | | | | | on older FreeBSDs to fix --enable-threads. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65303 13f79535-47bb-0310-9956-ffa450edef68
* This must hit 1.0 - note the ambiguity of ctime.wrowe2004-08-121-2/+2
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65302 13f79535-47bb-0310-9956-ffa450edef68
* * build/find_apr.m4 (APR_FIND_APR): Remove echo (debugging aid?) andjorton2004-08-101-2/+1
| | | | | | | quote AC_DEFUN properly. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65301 13f79535-47bb-0310-9956-ffa450edef68
* Make sure that we auto-load the LDAPSDK NLMs so that APRLIB can run in ↵bnicholes2004-08-091-0/+10
| | | | | | protected address space git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65300 13f79535-47bb-0310-9956-ffa450edef68
* Ditch autoconf-2.5x+ syntax (m4_*) and only print the warning on ac-2.5x+jerenkrantz2004-08-091-5/+4
| | | | | | | (apr-util now configures correctly on autoconf-2.13) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65299 13f79535-47bb-0310-9956-ffa450edef68
* Update the NetWare makefiles to conform with the LDAP overhaulbnicholes2004-08-043-0/+13
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65298 13f79535-47bb-0310-9956-ffa450edef68
* HEAD is now 1.0.1 and is once again a dev versiondreid2004-08-031-1/+6
| | | | | | | | When testing this apr-1-config didn't show the "-dev" as I'd have expected. Don't have time to trace more than that! git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65297 13f79535-47bb-0310-9956-ffa450edef68
* OK, so there was probably an easier way to do this, but...dreid2004-08-031-6/+0
| | | | | | | | | | APR 1.0.0 is a release, not a dev release, so remove the define that we are a dev release. Submitted by: William Rowe git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65295 13f79535-47bb-0310-9956-ffa450edef68
* Improve apr_file_gets() performance on buffered files by not callingjerenkrantz2004-08-022-11/+58
| | | | | | | | | | apr_file_read() on each byte if we don't have to. (mod_negotiation requests call apr_file_gets() for each line in the map file, which can get to be quite expensive to have repeated memcpy()'s for one byte!) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65294 13f79535-47bb-0310-9956-ffa450edef68
* Only install apr-$MAJOR-config and add appropriate detection code tojerenkrantz2004-08-016-39/+92
| | | | | | | | | | | | | | | find_apr.m4 (APR_FIND_APR). Justin made a few changes to Max's latest patch: - Emit a warning at autoconf-time and default to [0 1] if 4th arg is missing. - Fix some tpyos - Change apr-config.in to not use multiple @APR_MAJOR_VERSION@ substs. Submitted by: Max Bowsher Reviewed by: Justin Erenkrantz git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65293 13f79535-47bb-0310-9956-ffa450edef68
* Eliminate APR_STATUS_IS_SUCCESS macro.jerenkrantz2004-07-315-16/+8
| | | | | | | Reviewed by (conceptually): Ryan, Greg, Fitz git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65292 13f79535-47bb-0310-9956-ffa450edef68
* Since this code only applies to sendfile, make sure that it is properly ↵bnicholes2004-07-262-0/+4
| | | | | | #ifdef'ed git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65291 13f79535-47bb-0310-9956-ffa450edef68
* Win32: Fix compile break in apr tests. PR: 30103 by Craig Rodriguesstoddard2004-07-262-4/+8
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65289 13f79535-47bb-0310-9956-ffa450edef68
* Win32: Fix bug in apr_socket_sendfile that interferred with LSPs. PR 23982stoddard2004-07-224-30/+28
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@65288 13f79535-47bb-0310-9956-ffa450edef68