summaryrefslogtreecommitdiff
path: root/libapr.dsp
Commit message (Collapse)AuthorAgeFilesLines
...
* Outch, these shouldn't vary, should be in alpha order, and most importantly,wrowe2003-03-061-2/+22
| | | | | | | anything in apr/include/*.h* should be in the list of public headers :-) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64399 13f79535-47bb-0310-9956-ffa450edef68
* After consulting with the APR list, it was decided that /map file creationwrowe2003-02-201-5/+5
| | | | | | | | | | | | | | | | | | is fairly redundant when you retain rich .pdb debugging symbol files. We have rarely used them, and generally .dbg and .pdb files prove much more useful for the cases we have. While eliminating /map files, we are also shrinking the size of the .dbg files by stripping 'private' symbol information. Really this means less rich diagnostics from Dr. Watson on NT or Win9x when they query the .dbg symbols in creating a DrWatson log file. But it's more than compensated for on newer OS'es where Dr. Watson will query the .pdb symbols, on all Win32 flavors when WinDbg is used with the .pdb symbols, and the fact that the distribution of binary symbols will use less bandwidth when less information is duplicated from the .pdb format into the .dbg files. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64369 13f79535-47bb-0310-9956-ffa450edef68
* Added a new module, apr_env, for manipulating the environment. The newbrane2003-02-171-0/+12
| | | | | | | | functions are apr_env_get, apr_env_set and apr_env_delete. Also added a set of tests for the new functions. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64363 13f79535-47bb-0310-9956-ffa450edef68
* .dbgmark was a very bad choice, because foo.dbgmark == foo.dbg in 8.3wrowe2003-02-161-2/+2
| | | | | | | | | notation. dbr simply stands for 'dbg rebased' and didn't sound like any 'database' extention I've encountered. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64356 13f79535-47bb-0310-9956-ffa450edef68
* Added two new functions, apr_filepath_list_split and apr_filepath_list_merge,brane2003-02-121-0/+4
| | | | | | | | | | for managing search paths. The common implementation is in a new file, file_io/unix/filepath_util.c. Also added tests for these functions a new file in the test suite, testpath.c. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64349 13f79535-47bb-0310-9956-ffa450edef68
* Stay consistent with naming the .pdb files from the compile step as _src.wrowe2003-02-111-2/+2
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64346 13f79535-47bb-0310-9956-ffa450edef68
* rebase touches the .dll often after it's last touched the .dbg file, sowrowe2003-02-071-1/+2
| | | | | | | | the build continues to try and rebase even if the .dll isn't modified. Fix this by using a dbgmark file instead of the .dbg itself as the target. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64339 13f79535-47bb-0310-9956-ffa450edef68
* *) Introduce Release mode debugging symbols for Win32 builds of apr.wrowe2003-02-061-6/+14
| | | | | | | | | | | | All library builds gain /Zi for debug symbols (which are discarded at link time if some flavor of the /debug flag isn't passed to link) and .dll builds gain both .pdb and .dbg files (older debuggers and Dr. Watson-type utilities on WinNT or Win9x don't support the newer .pdb symbol files.) Documentation on how-to-use these symbol files will be forthcoming. [Allen Edwards, William Rowe] git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64334 13f79535-47bb-0310-9956-ffa450edef68
* Clean up these project to be consistent with .dsp files saved from thewrowe2003-02-061-10/+10
| | | | | | | IDE (correcting file name order and some whitespace issues.) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64332 13f79535-47bb-0310-9956-ffa450edef68
* Identify libapr as a .dll, not an .exe. Submitted by Mladen Turk.wrowe2003-01-201-1/+1
| | | | | | | [Already fixed one case, had forgotten the other.] git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64303 13f79535-47bb-0310-9956-ffa450edef68
* Identify libapr as a .dll, not an .exe. Submitted by Mladen Turk.wrowe2003-01-201-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64302 13f79535-47bb-0310-9956-ffa450edef68
* rename apr_arch_fileio.h to apr_arch_file_io.h for consistencythommay2003-01-071-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64275 13f79535-47bb-0310-9956-ffa450edef68
* Fix up the apr dsp files affected by the move of the header filesthommay2003-01-071-10/+10
| | | | | | | Obtained from: Sander Striker git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64274 13f79535-47bb-0310-9956-ffa450edef68
* Studying the sizes [in debug mode] consumed by libapr.dll and family,wrowe2002-12-021-4/+4
| | | | | | | this is the beginning of a bit of trimming for a reasonable size. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64112 13f79535-47bb-0310-9956-ffa450edef68
* Introduced apr_os_default_encoding and apr_os_locale_encoding, withbrane2002-11-121-0/+4
| | | | | | | implementations for Unix and Win32, needed by apr_xlate. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64015 13f79535-47bb-0310-9956-ffa450edef68
* Resync to network_io/unix/sockaddr.c now that they are completely common.wrowe2002-10-271-6/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63989 13f79535-47bb-0310-9956-ffa450edef68
* Skip the entire CoAPI garbage and go right for UuidCreate(), which onwrowe2002-07-171-2/+2
| | | | | | | | | Win2000/XP no longer reveals the mac address. Submitted by: David Shane Holden <dpejesh@yahoo.com> git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63702 13f79535-47bb-0310-9956-ffa450edef68
* Changed APR_HAS_XLATE within apr to an APR_HAVE_ICONV feature test.wrowe2002-07-171-12/+0
| | | | | | | | | | Moved xlate.c into apr-util. Define APR_HAS_XLATE based on APR_HAVE_ICONV. It could become an APU_HAVE_ICONV test, but my configure.in.foo isn't that worthy. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63698 13f79535-47bb-0310-9956-ffa450edef68
* Move UUID. Not the simplest thing in the world. Note that almostwrowe2002-07-171-12/+0
| | | | | | | | all the remaining getuuid.c source should be made generic. I just grabbed what my compiler tripped over. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63696 13f79535-47bb-0310-9956-ffa450edef68
* Move the win32-only utf8 support [for the Unicode filesystem] out ofwrowe2002-07-171-8/+8
| | | | | | | the i18n/unix tree. Never built it there anyways. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63695 13f79535-47bb-0310-9956-ffa450edef68
* MD5 is crypto. It belongs in crypto. And as far as I can tell, thiswrowe2002-07-171-8/+0
| | | | | | | didn't even cause any hassles. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63693 13f79535-47bb-0310-9956-ffa450edef68
* Split the apr_poll() implementation from the accessor functions. Thisrbb2002-07-111-0/+4
| | | | | | | | | allows all platforms to use the same implementation for the accessor functions. Submitted by: Brian Havard git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63611 13f79535-47bb-0310-9956-ffa450edef68
* I really don't see why we moved the filewrowe2002-07-111-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63605 13f79535-47bb-0310-9956-ffa450edef68
* Get Win32 building again. Doesn't build clean, but at least it builds.wrowe2002-07-111-1/+1
| | | | | | | | | poll on win32 may or may not work correctly, but then again, I don't believe that httpd needs it at this moment. Not blasting win32's poll until coders are done with it. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63604 13f79535-47bb-0310-9956-ffa450edef68
* Prepare for win32 inherit.hwrowe2002-06-081-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63480 13f79535-47bb-0310-9956-ffa450edef68
* Include i18n/unix/xlate.c for ENOTIMPL entry pointswrowe2002-06-081-1/+0
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63474 13f79535-47bb-0310-9956-ffa450edef68
* We appear to never have had any complaints about copy srcname dstnamewrowe2002-05-241-6/+4
| | | | | | | | | not overwriting dstname ... this flavor is certain not to emit a file exists error [with the obvious caviat - if it's write protected, your problem.] Much simpler than /y, <.y or set copycmd fooness. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63430 13f79535-47bb-0310-9956-ffa450edef68
* Correct the omission of version.cwrowe2002-05-131-0/+4
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63390 13f79535-47bb-0310-9956-ffa450edef68
* Doesn't fix anything. Just makes it more convienent to maintain apr_app.cwrowe2002-04-291-0/+5
| | | | | | | (the alternative to apr_app_initialize -only- for WINNT app builds.) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63316 13f79535-47bb-0310-9956-ffa450edef68
* Thanks to Aaron for the proposed patch, thanks to Sebastian for validating.wrowe2002-04-091-12/+0
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63238 13f79535-47bb-0310-9956-ffa450edef68
* No actual global_mutex implementation on Win32, it's simply a proc_lock.wrowe2002-02-221-4/+0
| | | | | | | Same commit needed for Netware - though I don't that build structure. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63051 13f79535-47bb-0310-9956-ffa450edef68
* Can't be playing in apr.hw without keeping apr.h.in and apr.hnw up to date.wrowe2002-02-221-0/+5
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63049 13f79535-47bb-0310-9956-ffa450edef68
* Implement apr_global_mutex_foo() on Windows. This is basically identicalstoddard2002-02-191-0/+8
| | | | | | | to apr_proc_lock as a Windows MUTEX locks threads as well as processes. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63026 13f79535-47bb-0310-9956-ffa450edef68
* Realign internal.c as the required apr_app static fn's, and removedwrowe2002-02-181-5/+5
| | | | | | | common code from apr_app into misc.c and internal.c git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63014 13f79535-47bb-0310-9956-ffa450edef68
* Add apr_file_copy() and apr_file_append() functions. These are writtengstein2002-02-011-0/+4
| | | | | | | | | | | | | | | | in terms of APR itself, so each platform just uses the one function. A future improvement would use CopyFile(Ex) on Windows and sendfile() on sendfile-capable systems. Also add apr_file_attrs_set() for setting file attributes in a logical fashion, rather than based on (Posix) permission bits. This is not (yet) implemented for Windows, and still needs a way to turn *off* the readonly and executable modes. Submitted by: Philip Martin <philip@codematters.co.uk> git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62886 13f79535-47bb-0310-9956-ffa450edef68
* Not critical - this patch is only required if libapr is built withwrowe2002-01-311-4/+4
| | | | | | | /D WINNT (which we did not attempt in 2.0.31). git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62877 13f79535-47bb-0310-9956-ffa450edef68
* Build new goodies.wrowe2002-01-301-0/+4
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62869 13f79535-47bb-0310-9956-ffa450edef68
* Change 'External' since some suspect this could cause Win32 to considerwrowe2002-01-291-2/+2
| | | | | | | those header files Immortal and never rebuild based on changes. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62863 13f79535-47bb-0310-9956-ffa450edef68
* Changes for Win32 to build with shm. [and a little bit of alpha ordering]wrowe2002-01-101-7/+6
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62736 13f79535-47bb-0310-9956-ffa450edef68
* Doesn't do much good if the win32 projects aren't committed to includewrowe2002-01-081-0/+12
| | | | | | | the new win32 sources git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62720 13f79535-47bb-0310-9956-ffa450edef68
* Ring-a-ling, time to move from util into aprwrowe2001-12-261-0/+4
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62668 13f79535-47bb-0310-9956-ffa450edef68
* Following the split, fix this for the IDE (really no effect on building.)wrowe2001-11-211-1/+1
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62539 13f79535-47bb-0310-9956-ffa450edef68
* The dll build of apr is misssing a mktemp.c in build.trawick2001-11-111-0/+4
| | | | | | | | Submitted by: "Mladen Turk" <mturk@mappingsoft.com> Reviewed by: Jeff Trawick git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62500 13f79535-47bb-0310-9956-ffa450edef68
* Remove SMS and all references.striker2001-09-281-28/+0
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62381 13f79535-47bb-0310-9956-ffa450edef68
* When rbb's implementation is committed, make win32 ready for thread_cond.cwrowe2001-09-171-0/+4
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62335 13f79535-47bb-0310-9956-ffa450edef68
* Begin/End Source (not End Group :) Any patch to apr.dsp generally needswrowe2001-09-111-0/+24
| | | | | | | to be mirrored to libapr.dsp (and visa versa.) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62310 13f79535-47bb-0310-9956-ffa450edef68
* Split all win32 specific system calls from filepath.c into filesys.cwrowe2001-08-281-0/+4
| | | | | | | | I don't care whether filepath.c remains in file_io/win32 or moves to file_io/os2. This is now generic enough for both ports to build upon. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62242 13f79535-47bb-0310-9956-ffa450edef68
* Toggle the /Zi flag to allow all supportd versions of VC (5, 6, 7) towrowe2001-08-261-1/+1
| | | | | | | build 'out of the box' in debugging mode. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62225 13f79535-47bb-0310-9956-ffa450edef68
* Never used, now never usefulwrowe2001-08-241-4/+0
| | | | git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62217 13f79535-47bb-0310-9956-ffa450edef68
* The purpose of this patch is to toggle the debugging mode (default) towrowe2001-08-171-6/+3
| | | | | | | | | | | | | | | | Program Database (from Program Database for Modify on the fly debugging). The net effect of this patch is to clean up all of the irrelevant entries associated with either the debugging or release command line switches, and generally straighten the projects as they would be exported from VC6/SP5. The outcome of this patch is that VC5 users -should- be able to load and build the workspace without any errors (as they used to have no symbols database at all, the /ZI option doesn't work, they had to use cvtdsp.pl to toggle these to /Zi.) git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@62183 13f79535-47bb-0310-9956-ffa450edef68