summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tagAPACHE_2_0_11(no author)2001-02-135-1733/+0
| | | | | | 'APACHE_2_0_11'. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/tags/APACHE_2_0_11@61233 13f79535-47bb-0310-9956-ffa450edef68
* doh. need a spellchekker for these rename scripts. ↵dougm2001-02-1311-28/+28
| | | | | | s/apr_lock_aquire/apr_lock_acquire/g; git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61232 13f79535-47bb-0310-9956-ffa450edef68
* Again, BeOS doesn't really have the notion of groups and users at the moment,dreid2001-02-131-0/+3
| | | | | | | so we'll just ignore this until it does. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61231 13f79535-47bb-0310-9956-ffa450edef68
* tweak APR_TRY_COMPILE_NO_WARNING so that stderr from the compiler istrawick2001-02-131-1/+1
| | | | | | | saved in config.log instead of polluting the configure output git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61230 13f79535-47bb-0310-9956-ffa450edef68
* Define APR_PATH_MAX to solve a minor portability aggravation. Win32trawick2001-02-135-10/+32
| | | | | | | | APR already defined it privately for the Win32 implementation of APR. We now externalize it everywhere. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61229 13f79535-47bb-0310-9956-ffa450edef68
* Don't assume apr_pstrndup will return n bytes of storage. It was recentlybjh2001-02-131-4/+6
| | | | | | | | optimized to only allocate enough storage for the string if shorter than n which caused the args to get scrambled. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61228 13f79535-47bb-0310-9956-ffa450edef68
* Including the right header file(s) for ntohl et al is a little bittrawick2001-02-131-0/+20
| | | | | | | | cumbersome, so teach apr_want.h how to do that on the app's behalf when it specifies APR_WANT_BYTEFUNC. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61227 13f79535-47bb-0310-9956-ffa450edef68
* OS/390 has _POSIX_PATH_MAX but not PATH_MAX (did I hear a little birdtrawick2001-02-121-0/+4
| | | | | | | say "APR_PATH_MAX?") git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61226 13f79535-47bb-0310-9956-ffa450edef68
* standardize the include path in the OS/390 dso directory to get rid of antrawick2001-02-122-2/+4
| | | | | | | annoying warning message git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61225 13f79535-47bb-0310-9956-ffa450edef68
* get prototype for apr_psprintf()trawick2001-02-121-0/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61224 13f79535-47bb-0310-9956-ffa450edef68
* Fix a bad rename: apr_file_read_file should be apr_file_read_fullgstein2001-02-122-8/+9
| | | | | | | (was originally apr_full_read) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61223 13f79535-47bb-0310-9956-ffa450edef68
* *) rename apr_memdup() to apr_pmemdup()gstein2001-02-122-9/+9
| | | | | | | *) optimize the allocation size in apr_pstrndup() git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61222 13f79535-47bb-0310-9956-ffa450edef68
* Finally, protect from pure bogositywrowe2001-02-111-4/+6
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61221 13f79535-47bb-0310-9956-ffa450edef68
* Still wasn't right. Always return the (partial/complete) passwordwrowe2001-02-111-5/+3
| | | | | | | | string, and use the apr_status_t as the -one and only- indicatator of success, partial success or failure. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61220 13f79535-47bb-0310-9956-ffa450edef68
* Make that even simpler.wrowe2001-02-111-4/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61219 13f79535-47bb-0310-9956-ffa450edef68
* result(?) What result? Stop mauling the size_t arg and overwrite thewrowe2001-02-113-4/+8
| | | | | | | system buffer before returning from apr_password_get, and clean up doc. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61218 13f79535-47bb-0310-9956-ffa450edef68
* Fix the broken support utilities (htdigest/htpasswd) on Win32. Won'twrowe2001-02-111-1/+1
| | | | | | | | | | | strictly put this on [signals hacker] since we should have defined this HAVE_SIGNAL_H symbol, and not simply -included- the header in the first place. Note that win32 begs for a complete replacement of their clib signal support, I'll put that on my 'short' list and look at the old win32 signal code hiding in the attic. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61217 13f79535-47bb-0310-9956-ffa450edef68
* Change a call from setpgrp to setpgid(0, 0). According to man these arerbb2001-02-111-1/+1
| | | | | | | identical, but the latter is more portable. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61216 13f79535-47bb-0310-9956-ffa450edef68
* ap_pstrndup could have caused out-of-bounds memory accesses (this is aben2001-02-111-2/+7
| | | | | | | theoretical problem that I happened to notice). Only lightly tested. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61215 13f79535-47bb-0310-9956-ffa450edef68
* Add memdup function.ben2001-02-112-2/+23
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61214 13f79535-47bb-0310-9956-ffa450edef68
* Fix a simple typo.rbb2001-02-111-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61212 13f79535-47bb-0310-9956-ffa450edef68
* We need to close the brace, or 'make docs' won't workrbb2001-02-111-0/+4
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61211 13f79535-47bb-0310-9956-ffa450edef68
* add new signal init/query functionsgstein2001-02-111-0/+7
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61210 13f79535-47bb-0310-9956-ffa450edef68
* *) add missing APR_HAVE_CORKABLE_TCPgstein2001-02-111-12/+10
| | | | | | | | | *) add new APR_HAVE_SIGACTION *) sort the APR_HAVE_ feature list *) remove the apr_signal define; client should use apr_signal.h git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61209 13f79535-47bb-0310-9956-ffa450edef68
* *) include "apr_signal.h" when neededgstein2001-02-111-0/+1
| | | | | | | *) some other minor include tweaks git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61208 13f79535-47bb-0310-9956-ffa450edef68
* *) add apr_signal_get_description() to that platforms (which have signals)gstein2001-02-117-138/+324
| | | | | | | | | | can portably get descriptions for them. *) move signal stuff from apr.h to (new) apr_signal.h *) os2/signals.c was collapsed into unix/signals.c *) APR initialization will init the signal names (if needed) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61207 13f79535-47bb-0310-9956-ffa450edef68
* AYCB on win32.wrowe2001-02-111-0/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61206 13f79535-47bb-0310-9956-ffa450edef68
* Moved the prototypes for apr_snprintf and apr_vsnprintf to therbb2001-02-116-42/+49
| | | | | | | | apr_strings.h header, from apr_lib.h. This location makes more sense. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61205 13f79535-47bb-0310-9956-ffa450edef68
* Fix the configure scripts, so that we don't try to substitute intorbb2001-02-101-1/+3
| | | | | | | | | test/Makefile unless we actually have a test directory. The problem is that we don't distribute test directories with our tarballs, so our configure script outputs error messages. This fixes that problem. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61204 13f79535-47bb-0310-9956-ffa450edef68
* Separate CFLAGS and CPPFLAGS.wsanchez2001-02-091-4/+5
| | | | | | | (Allows overriding CFLAGS without clobbering include paths abnd defines.) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61203 13f79535-47bb-0310-9956-ffa450edef68
* Change the macro name to APR_COMPILE_NO_WARNING and make itfielding2001-02-092-22/+28
| | | | | | | | active for all compilers rather than just gcc. The environment variable CFLAGS_WARN can be used for extra warning flags. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61202 13f79535-47bb-0310-9956-ffa450edef68
* Stop hardcoding the math library. APR autodetects the need for -lm fortrawick2001-02-091-12/+3
| | | | | | | | modf(). (Some platforms may require a different test to be added.) Submitted by: Greg Stein git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61201 13f79535-47bb-0310-9956-ffa450edef68
* Add APR_TRY_GCC_WARNING macro to dynamically test the iconv prototypefielding2001-02-092-4/+35
| | | | | | | if gcc is being used. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61199 13f79535-47bb-0310-9956-ffa450edef68
* look in -lm for modf()trawick2001-02-081-0/+1
| | | | | | | | | This gets APR test programs linking on Tru64. It may result in a double -lm on some platforms, as we autodetect the need for -lm but also hard-code the need for it in hints.m4. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61198 13f79535-47bb-0310-9956-ffa450edef68
* Add Darwin/Mac OS.wsanchez2001-02-084-2/+8
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61197 13f79535-47bb-0310-9956-ffa450edef68
* add iconv hints for AIX and Solaris (tested on AIX 4.3 and Solaris 8)trawick2001-02-081-0/+2
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61196 13f79535-47bb-0310-9956-ffa450edef68
* s/pupt/put/g typodougm2001-02-086-9/+9
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61195 13f79535-47bb-0310-9956-ffa450edef68
* renaming various functions for consistency sakedougm2001-02-08120-1408/+1408
| | | | | | | | | | | see: http://apr.apache.org/~dougm/apr_rename.pl PR: Obtained from: Submitted by: Reviewed by: git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61194 13f79535-47bb-0310-9956-ffa450edef68
* Handle the second parameter to iconv() differently, respecting thattrawick2001-02-083-3/+45
| | | | | | | | | some systems declare it "const char **" while other systems (and current Single UNIX Spec.) declare it "char **". We'll still have to add some hints for some platforms to avoid warnings. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61193 13f79535-47bb-0310-9956-ffa450edef68
* fix a typo??trawick2001-02-071-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61192 13f79535-47bb-0310-9956-ffa450edef68
* Check for glibtoolize as well as libtoolize.wsanchez2001-02-071-3/+3
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61191 13f79535-47bb-0310-9956-ffa450edef68
* Fix a problem in configure with the getaddrinfo check. We need to includerbb2001-02-072-0/+7
| | | | | | | | | | sys/types.h for some platforms. PR: 7065 Submitted by: jun-ichiro hagino <itojun@kame.net> Reviewed by: Ryan Bloom git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61190 13f79535-47bb-0310-9956-ffa450edef68
* some whitespace.gstein2001-02-051-0/+8
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61189 13f79535-47bb-0310-9956-ffa450edef68
* for portability: use apr_uint32_t rather than u_long. the latter is a BSDismgstein2001-02-051-2/+2
| | | | | | | that may not be available on all platforms. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61188 13f79535-47bb-0310-9956-ffa450edef68
* apr_mmap_t is defined as a void*.gstein2001-02-051-5/+5
| | | | | | | (caddr_t seems to be a BSDism rather than single unix) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61187 13f79535-47bb-0310-9956-ffa450edef68
* sun. lots. good.gstein2001-02-041-1/+5
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61185 13f79535-47bb-0310-9956-ffa450edef68
* A binary file is a file that cannot be parsed in ascii and must not bewrowe2001-02-034-1325/+1325
| | | | | | | | | | | | | transformed. A text file is a file that can be viewed and manipulated by any run of the mill text editor, can pass in and out of cvs with the appropriate modifications. Commit then review means that you propose code changes by demonstrating them to the tree. This does -not- apply to major cvs changes, mass symbol name changes or editing the repository. The -kb change is vetoed. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61184 13f79535-47bb-0310-9956-ffa450edef68
* Clean up someone's cruft in the repository and back out this changewrowe2001-02-034-1325/+1325
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61183 13f79535-47bb-0310-9956-ffa450edef68
* fix a typotrawick2001-02-021-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61182 13f79535-47bb-0310-9956-ffa450edef68
* Win32: (IsLeapYear): New macro for quickly figgerin' out if a given year is astoddard2001-02-022-3/+23
| | | | | | | | | | | | | | leap year. (SystemTimeToAprExpTime): Perform the calculation of tm_yday. Also, negate the sign of the tm_gmtoff field to be consistent with Unix platforms and APR header file comments. ToDo: Perhaps the IsLeapYear macro is useful for other OSes. Submitted by: Mike Pilato Reviewed by: Bill Stoddard git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@61181 13f79535-47bb-0310-9956-ffa450edef68