summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fix typo noticed by Mike Rumph and Christophe Jaillet.1.0.xRainer Jung2013-12-141-3/+3
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@1550913 13f79535-47bb-0310-9956-ffa450edef68
* Changes reflect major/minor related changes. ProvideJim Jagielski2009-09-251-1665/+2
| | | | | | | links to other versions. git-svn-id: https://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)Brian Pane2005-07-236-34/+54
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@224440 13f79535-47bb-0310-9956-ffa450edef68
* add a proposed backport from 1.2Brian Pane2005-07-161-0/+9
| | | | git-svn-id: https://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_APPENDBrian Havard2005-07-041-6/+4
| | | | | | | | | wasn't also given. Backport from trunk of r180013 git-svn-id: https://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 whereBrian Havard2005-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: https://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 workBrian Havard2005-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: https://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.Jeff Trawick2005-06-142-0/+15
| | | | | | | | PR: 32177 Submitted by: Sim <sgobbi datamanagement.it>, Jeff Trawick git-svn-id: https://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 callerJeff Trawick2005-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: https://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@190572 13f79535-47bb-0310-9956-ffa450edef68
* Merge r179786 from trunk:Joe Orton2005-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: https://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 ↵Wilfredo Sanchez2005-05-311-2/+1
| | | | | | or weak sauce. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@179280 13f79535-47bb-0310-9956-ffa450edef68
* Backport r178340 from trunk:Wilfredo Sanchez2005-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: https://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@178843 13f79535-47bb-0310-9956-ffa450edef68
* fix typoCliff Woolley2005-05-261-1/+1
| | | | | | | Submitted by: dlr git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@178705 13f79535-47bb-0310-9956-ffa450edef68
* Merge r178386 from trunk:Joe Orton2005-05-251-0/+2
| | | | | | | | | * build/apr_hints.m4 (APR_PRELOAD): Prevent use of poll() on Darwin. PR: 34332, 29985 git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@178388 13f79535-47bb-0310-9956-ffa450edef68
* Merge r170395 from trunk:Joe Orton2005-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: https://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@170397 13f79535-47bb-0310-9956-ffa450edef68
* Merge r168607 from trunk:Joe Orton2005-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: https://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.expGraham Leggett2005-01-171-0/+1
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@125414 13f79535-47bb-0310-9956-ffa450edef68
* Merge r125069 from trunk:Joe Orton2005-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: https://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 ↵Graham Leggett2005-01-061-1/+1
| | | | | | installed in parallel. git-svn-id: https://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.Graham Leggett2005-01-041-1/+2
| | | | git-svn-id: https://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 theGraham Leggett2005-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: https://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.Graham Leggett2004-12-165-0/+104
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@112366 13f79535-47bb-0310-9956-ffa450edef68
* Note patches for a NetWare breakage.Bradley Nicholes2004-12-091-0/+4
| | | | git-svn-id: https://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 structureBradley Nicholes2004-12-0712-24/+24
| | | | git-svn-id: https://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 ↵Bradley Nicholes2004-11-292-2/+2
| | | | | | LibC SDK git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@106967 13f79535-47bb-0310-9956-ffa450edef68
* property cleanupAndré Malo2004-11-243-2/+2
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@106493 13f79535-47bb-0310-9956-ffa450edef68
* drop .cvsignore filesAndré Malo2004-11-2440-252/+0
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@106484 13f79535-47bb-0310-9956-ffa450edef68
* Merge r76119 from trunk:Joe Orton2004-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: https://svn.apache.org/repos/asf/apr/apr/branches/1.0.x@76126 13f79535-47bb-0310-9956-ffa450edef68
* Bump version to 1.0.2-devJustin Erenkrantz2004-11-172-2/+4
| | | | git-svn-id: https://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.Justin Erenkrantz2004-11-171-1/+1
| | | | git-svn-id: https://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.Justin Erenkrantz2004-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: https://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!)Justin Erenkrantz2004-11-170-0/+0
| | | | git-svn-id: https://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: https://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 ratherJoe Orton2004-08-201-34/+17
| | | | | | | than cp; use APR_MKDIR. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@65306 13f79535-47bb-0310-9956-ffa450edef68
* Improve support for configure --silent (aka --quiet):Joe Orton2004-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: https://svn.apache.org/repos/asf/apr/apr/trunk@65305 13f79535-47bb-0310-9956-ffa450edef68
* Spelling fix.Joe Orton2004-08-181-1/+1
| | | | git-svn-id: https://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_CHECKJoe Orton2004-08-121-1/+1
| | | | | | | on older FreeBSDs to fix --enable-threads. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@65303 13f79535-47bb-0310-9956-ffa450edef68
* This must hit 1.0 - note the ambiguity of ctime.William A. Rowe Jr2004-08-121-2/+2
| | | | git-svn-id: https://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?) andJoe Orton2004-08-101-2/+1
| | | | | | | quote AC_DEFUN properly. git-svn-id: https://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 ↵Bradley Nicholes2004-08-091-0/+10
| | | | | | protected address space git-svn-id: https://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+Justin Erenkrantz2004-08-091-5/+4
| | | | | | | (apr-util now configures correctly on autoconf-2.13) git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@65299 13f79535-47bb-0310-9956-ffa450edef68
* Update the NetWare makefiles to conform with the LDAP overhaulBradley Nicholes2004-08-043-0/+13
| | | | git-svn-id: https://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 versionDavid Reid2004-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: https://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...David Reid2004-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: https://svn.apache.org/repos/asf/apr/apr/trunk@65295 13f79535-47bb-0310-9956-ffa450edef68
* Improve apr_file_gets() performance on buffered files by not callingJustin Erenkrantz2004-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: https://svn.apache.org/repos/asf/apr/apr/trunk@65294 13f79535-47bb-0310-9956-ffa450edef68
* Only install apr-$MAJOR-config and add appropriate detection code toJustin Erenkrantz2004-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: https://svn.apache.org/repos/asf/apr/apr/trunk@65293 13f79535-47bb-0310-9956-ffa450edef68
* Eliminate APR_STATUS_IS_SUCCESS macro.Justin Erenkrantz2004-07-315-16/+8
| | | | | | | Reviewed by (conceptually): Ryan, Greg, Fitz git-svn-id: https://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 ↵Bradley Nicholes2004-07-262-0/+4
| | | | | | #ifdef'ed git-svn-id: https://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 RodriguesBill Stoddard2004-07-262-4/+8
| | | | git-svn-id: https://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 23982Bill Stoddard2004-07-224-30/+28
| | | | git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@65288 13f79535-47bb-0310-9956-ffa450edef68