cvs commit: apache-1.3/src/os/os2 util_os2.c

2000-02-27 Thread bjh
bjh 00/02/26 22:07:11 Modified:src/main util_script.c src/os/os2 util_os2.c Log: Squash a few subscript has type `char' warnings and a defined but not used warning. Revision ChangesPath 1.150 +5 -5 apache-1.3/src/main/util_script.c

cvs commit: apache-1.3/src/include ap_config.h

2000-02-27 Thread bjh
bjh 00/02/26 23:55:26 Modified:src/include ap_config.h Log: Don't use ap_slack() on OS/2. It shouldn't be necessary seems to interfere with graceful restarts. Revision ChangesPath 1.283 +1 -0 apache-1.3/src/include/ap_config.h Index: ap_config.h

cvs commit: apache-2.0/src/lib/apr/network_io/os2 sendrecv.c

2000-02-14 Thread bjh
bjh 00/02/14 06:01:42 Modified:src/lib/apr/network_io/os2 sendrecv.c Log: OS/2: ap_send/ap_recv/ap_sendv should set len to 0, not -1, when an error occurrs. Revision ChangesPath 1.7 +6 -6 apache-2.0/src/lib/apr/network_io/os2/sendrecv.c Index

cvs commit: apache-1.3/src/modules/standard mod_mime.c

2000-02-06 Thread bjh
bjh 00/02/05 19:53:14 Modified:src/modules/standard mod_mime.c Log: Use ap_isgraph instead of isgraph to avoid subscript has type `char' warning. Revision ChangesPath 1.54 +1 -1 apache-1.3/src/modules/standard/mod_mime.c Index: mod_mime.c

cvs commit: apache-2.0/src/lib/apr/test ab_apr.c

2000-01-26 Thread bjh
bjh 00/01/25 23:01:13 Modified:src/lib/apr/test ab_apr.c Log: timetaken is expected to be in milliseconds, not seconds. Revision ChangesPath 1.16 +2 -2 apache-2.0/src/lib/apr/test/ab_apr.c Index: ab_apr.c

cvs commit: apache-2.0/src/main http_request.c http_vhost.c

2000-01-26 Thread bjh
bjh 00/01/25 23:07:51 Modified:src/main http_request.c http_vhost.c Log: Quiet some warnings. - 1 'suggest parentheses around assignment used as truth value' - a few subscript has type `char' Revision ChangesPath 1.18 +1 -1 apache-2.0/src/main

cvs commit: apache-2.0/src/main util.c

2000-01-26 Thread bjh
bjh 00/01/25 23:40:12 Modified:src/main util.c Log: OS/2 doesn't have groups, don't try to mess with them. Revision ChangesPath 1.28 +1 -1 apache-2.0/src/main/util.c Index: util.c

cvs commit: apache-2.0/src/modules/mpm config.m4

2000-01-26 Thread bjh
bjh 00/01/25 23:47:35 Modified:src/modules/mpm config.m4 Log: Only check for pthreads for mpms that actually need it rather than assuming everything except prefork needs it. Clarify threads != pthreads. Revision ChangesPath 1.10 +2 -2 apache-2.0/src

cvs commit: apache-2.0/src/os/os2 Makefile.in config.m4 os.h util_os2.c

2000-01-26 Thread bjh
bjh 00/01/25 23:51:46 Modified:src/modules/mpm/spmt_os2 spmt_os2.c src/os config.m4 src/os/os2 os.h util_os2.c Added: src/modules/mpm/spmt_os2 Makefile.in config.m4 src/os/os2 Makefile.in config.m4 Log: Get OS/2 working

cvs commit: apache-1.3/src Configure

2000-01-14 Thread bjh
bjh 00/01/14 08:10:36 Modified:src Configure Log: Allow different file name extensions for the shared core and shared modules. Set HPUX to use .sl for the core .so for modules. Set OS/2 to use .dll for both. Reviewed by: Ryan Bloom Revision ChangesPath

cvs commit: apache-2.0/src/lib/apr/threadproc/os2 proc.c

2000-01-10 Thread bjh
bjh 00/01/09 22:21:13 Modified:src/lib/apr/threadproc/os2 proc.c Log: OS/2: Use native API for process waits. Revision ChangesPath 1.13 +13 -18apache-2.0/src/lib/apr/threadproc/os2/proc.c Index: proc.c

cvs commit: apache-2.0/src/lib/apr/file_io/os2 filedup.c fileio.h open.c pipe.c

2000-01-10 Thread bjh
bjh 00/01/10 06:21:54 Modified:src/lib/apr/file_io/os2 filedup.c fileio.h open.c pipe.c Log: OS/2: Implement delete on close fix an allocation error in ap_open_stderr. Revision ChangesPath 1.5 +1 -0 apache-2.0/src/lib/apr/file_io/os2/filedup.c Index

cvs commit: apache-2.0/src/modules/standard mod_autoindex.c mod_cern_meta.c mod_cgi.c mod_dir.c mod_mime.c mod_negotiation.c

2000-01-10 Thread bjh
bjh 00/01/10 07:35:53 Modified:src/lib/apr/file_io/os2 fileacc.c filedup.c fileio.h filestat.c open.c readwrite.c seek.c src/lib/apr/file_io/unix fileacc.c filestat.c src/lib/apr/include apr_file_io.h src/main

cvs commit: apache-2.0/src/lib/apr/test testproc.c

2000-01-10 Thread bjh
bjh 00/01/10 08:01:58 Modified:src/lib/apr/test testproc.c Log: I don't think sleeping for 1000 seconds is what we want to do here. Switch it for a child wait which is more appropriate and tests another function. Revision ChangesPath 1.10 +7 -1 apache-2.0

cvs commit: apache-2.0/src/lib/apr/time/os2 .cvsignore Makefile.in default.c

1999-12-21 Thread bjh
bjh 99/12/20 17:45:24 Removed: src/lib/apr/time/os2 .cvsignore Makefile.in default.c Log: Remove OS/2 version of time library, the default unix code works just fine.

cvs commit: apache-2.0/src/lib/apr/time/unix time.c

1999-12-21 Thread bjh
bjh 99/12/21 07:16:39 Modified:src/lib/apr/time/unix time.c Log: Prevent segfault on comparing an uninitialized ap_time_t object. Treat it as a zero value, same as a NULL ap_time_t pointer. Revision ChangesPath 1.14 +2 -2 apache-2.0/src/lib/apr/time/unix

cvs commit: apache-2.0/src/lib/apr/file_io/os2 filedup.c

1999-12-19 Thread bjh
bjh 99/12/19 00:00:32 Modified:src/lib/apr/file_io/os2 filedup.c Log: OS/2: Let the user supply two file descriptors to ap_dupfile to make them equivalent. Revision ChangesPath 1.4 +24 -13apache-2.0/src/lib/apr/file_io/os2/filedup.c Index: filedup.c

cvs commit: apache-2.0/src/lib/apr/file_io/os2 open.c

1999-12-19 Thread bjh
bjh 99/12/19 00:03:29 Modified:src/lib/apr/file_io/os2 open.c Log: OS/2: Fix a couple of uninitialized fields in ap_put_os_file(). Revision ChangesPath 1.11 +2 -0 apache-2.0/src/lib/apr/file_io/os2/open.c Index: open.c

cvs commit: apache-2.0/src/lib/apr/file_io/os2 open.c

1999-12-19 Thread bjh
bjh 99/12/19 00:05:07 Modified:src/lib/apr/file_io/os2 open.c Log: OS/2: Implement ap_open_stderr() Revision ChangesPath 1.12 +19 -0 apache-2.0/src/lib/apr/file_io/os2/open.c Index: open.c

cvs commit: apache-2.0/src/lib/apr/file_io/os2 readwrite.c

1999-12-19 Thread bjh
bjh 99/12/19 00:16:03 Modified:src/lib/apr/file_io/os2 readwrite.c Log: Fix a warning implicit declaration of function `malloc' Revision ChangesPath 1.10 +1 -0 apache-2.0/src/lib/apr/file_io/os2/readwrite.c Index: readwrite.c

cvs commit: apache-2.0/src/lib/apr/threadproc/os2 proc.c

1999-12-19 Thread bjh
bjh 99/12/19 00:33:53 Modified:src/lib/apr/threadproc/os2 proc.c Log: Adapt to change where arg[0] to ap_create_process() now contains the program name. Revision ChangesPath 1.11 +2 -1 apache-2.0/src/lib/apr/threadproc/os2/proc.c Index: proc.c

cvs commit: apache-2.0/src/lib/apr/file_io/os2 fileio.h

1999-12-19 Thread bjh
bjh 99/12/19 01:41:26 Modified:src/lib/apr/file_io/os2 fileio.h Log: OS/2: Include apr_config.h so HAVE_* macros are available to file I/O code. Revision ChangesPath 1.5 +1 -0 apache-2.0/src/lib/apr/file_io/os2/fileio.h Index: fileio.h

cvs commit: apache-1.3/src/modules/standard mod_include.c

1999-12-11 Thread bjh
bjh 99/12/10 16:36:20 Modified:src/modules/standard mod_include.c Log: Clean up an unused variable warning. Revision ChangesPath 1.120 +1 -1 apache-1.3/src/modules/standard/mod_include.c Index: mod_include.c

cvs commit: apache-2.0/src/lib/apr/misc/os2 misc.h Makefile.in getopt.c start.c

1999-12-08 Thread bjh
bjh 99/12/07 17:00:51 Modified:src/lib/apr/misc/os2 misc.h Removed: src/lib/apr/misc/os2 Makefile.in getopt.c start.c Log: Clean out OS/2 version of APR misc library. Revision ChangesPath 1.4 +1 -15 apache-2.0/src/lib/apr/misc/os2/misc.h Index

cvs commit: apache-1.3 configure

1999-12-07 Thread bjh
bjh 99/12/07 06:15:03 Modified:.configure Log: Give OS/2 back a default layout, disabled by previous patch. Revision ChangesPath 1.112 +1 -0 apache-1.3/configure Index: configure

cvs commit: apache-2.0 configure

1999-12-07 Thread bjh
bjh 99/12/07 06:20:12 Modified:.configure Log: Give OS/2 back a default layout, disabled by previous patch. Revision ChangesPath 1.7 +1 -0 apache-2.0/configure Index: configure

cvs commit: apache-2.0/src/ap ap_hooks.c

1999-11-28 Thread bjh
bjh 99/11/28 05:32:16 Modified:src/ap ap_hooks.c Log: Fix hook sorting. When walking a linked list it's a good idea to start at the head rather than the first element of the array. This makes mod_userdir actually work. Revision ChangesPath 1.8 +1 -1

cvs commit: apache-1.3/src/main util_script.c

1999-11-27 Thread bjh
bjh 99/11/27 06:48:37 Modified:src/main util_script.c Log: OS/2: Add a handful of environment variables that should be passed to CGI scripts by default. Revision ChangesPath 1.147 +16 -1 apache-1.3/src/main/util_script.c Index: util_script.c

cvs commit: apache-1.3/src/os/os2 os.c

1999-11-27 Thread bjh
bjh 99/11/27 06:52:36 Modified:src/os/os2 os.c Log: Add an important piece of information to the error message when a module fails to load, the name of the dll that caused the problem. This can be different from the module dll if it depends on another dll and that other

cvs commit: apache-2.0/src/modules/standard mod_so.c

1999-11-14 Thread bjh
bjh 99/11/13 22:07:41 Modified:src/modules/standard mod_so.c Log: Make mod_so.c compile. Loading modules crashes for me though, haven't figured out why yet Revision ChangesPath 1.5 +11 -20apache-2.0/src/modules/standard/mod_so.c Index: mod_so.c

cvs commit: apache-2.0/src/lib/apr/file_io/os2 readwrite.c

1999-11-08 Thread bjh
bjh 99/11/07 21:59:24 Modified:src/lib/apr/file_io/os2 readwrite.c Log: Reomve a missed APR_EOF return from ap_read(). Revision ChangesPath 1.9 +0 -1 apache-2.0/src/lib/apr/file_io/os2/readwrite.c Index: readwrite.c

cvs commit: apache-2.0/src/main http_config.c http_core.c http_log.c

1999-11-08 Thread bjh
bjh 99/11/07 22:05:52 Modified:src/main http_config.c http_core.c http_log.c Log: Get rid of a number of 'incompatible pointer type' warnings using ap_os_{get,put}_file() on platforms who's ap_os_file_t is not an int. Revision ChangesPath 1.17 +1 -1

cvs commit: apache-2.0/src/lib/apr/file_io/os2 readwrite.c

1999-11-07 Thread bjh
bjh 99/11/06 22:58:52 Modified:src/lib/apr/file_io/os2 readwrite.c Log: OS/2: make ap_read/ap_write thread safe when buffered. Revision ChangesPath 1.8 +6 -0 apache-2.0/src/lib/apr/file_io/os2/readwrite.c Index: readwrite.c

cvs commit: apache-2.0/src/lib/apr/threadproc/os2 proc.c

1999-11-03 Thread bjh
bjh 99/11/03 00:06:01 Modified:src/lib/apr/threadproc/os2 proc.c Log: Some fixes for OS/2 process creation: - Allow NULL environment block - Allow .exe extension to be omitted Revision ChangesPath 1.10 +20 -13apache-2.0/src/lib/apr/threadproc/os2/proc.c

cvs commit: apache-2.0/src/main http_protocol.c

1999-11-03 Thread bjh
bjh 99/11/03 04:47:24 Modified:src/lib/apr/file_io/os2 readwrite.c src/main http_protocol.c Log: OS/2: Don't return APR_EOF from ap_read(). EOF is indicated by a APR_SUCCESS status with nbytes set to 0. Revision ChangesPath 1.6 +10 -15

cvs commit: apache-2.0/src/lib/apr/network_io/os2 networkio.h sendrecv.c sockets.c sockopt.c

1999-11-03 Thread bjh
bjh 99/11/03 06:03:27 Modified:src/lib/apr/network_io/os2 networkio.h sendrecv.c sockets.c sockopt.c Log: OS/2: Rework ap_send/ap_recv to time out properly on blocking sockets. Revision ChangesPath 1.6 +2 -1 apache-2.0/src/lib/apr

cvs commit: apache-2.0/src/modules/standard mod_auth.c mod_imap.c mod_mime.c

1999-11-02 Thread bjh
bjh 99/11/02 07:15:11 Modified:src/include httpd.h src/main http_config.c util.c src/modules/standard mod_auth.c mod_imap.c mod_mime.c Log: De-errno ap_pcfg_openfile(). Revision ChangesPath 1.12 +1 -1 apache-2.0/src/include

cvs commit: apache-2.0/src/modules/standard mod_asis.c

1999-11-01 Thread bjh
bjh 99/10/31 20:27:09 Modified:src/modules/standard mod_asis.c Log: Fix mod_asis handler name. This was messed up with Ryans accidental search/replace of -i - ap_context_t and the subsequent fix was slightly out. Revision ChangesPath 1.12 +1 -1 apache

cvs commit: apache-2.0/src/modules/mpm/spmt_os2 spmt_os2.c

1999-11-01 Thread bjh
bjh 99/11/01 02:58:56 Modified:src/modules/mpm/spmt_os2 spmt_os2.c Log: OS/2: Bump up thread stack size. 64k just wasn't enough when doing sub-requests in mod_include. Revision ChangesPath 1.20 +1 -1 apache-2.0/src/modules/mpm/spmt_os2/spmt_os2.c

cvs commit: apache-2.0/src/lib/apr/file_io/os2 maperrorcode.c

1999-11-01 Thread bjh
bjh 99/11/01 03:11:41 Modified:src/lib/apr/file_io/os2 maperrorcode.c Log: OS/2: Error map shouldn't be a public symbol. Revision ChangesPath 1.4 +1 -1 apache-2.0/src/lib/apr/file_io/os2/maperrorcode.c Index: maperrorcode.c

cvs commit: apache-2.0/src/modules/mpm/spmt_os2 spmt_os2.c

1999-11-01 Thread bjh
bjh 99/11/01 03:25:05 Modified:src/modules/mpm/spmt_os2 spmt_os2.c Log: OS/2: When shutting down, kill off child threads properly before shutting down parent thread. Revision ChangesPath 1.21 +32 -13apache-2.0/src/modules/mpm/spmt_os2/spmt_os2.c Index

cvs commit: apache-2.0/src/modules/standard mod_include.c

1999-11-01 Thread bjh
bjh 99/11/01 03:45:30 Modified:src/modules/standard mod_include.c Log: First hack at getting mod_include to work. Everything seems to work ok but error handling probably needs some work. Revision ChangesPath 1.7 +121 -111 apache-2.0/src/modules/standard

cvs commit: apache-2.0/src Configuration.tmpl

1999-11-01 Thread bjh
bjh 99/11/01 03:51:53 Modified:src Configuration.tmpl Log: mod_cgi mod_include now build so include them by default. Revision ChangesPath 1.5 +2 -2 apache-2.0/src/Configuration.tmpl Index: Configuration.tmpl

cvs commit: apache-2.0/src/main http_protocol.c

1999-11-01 Thread bjh
bjh 99/11/01 02:50:48 Modified:src/main http_protocol.c Log: In ap_send_fb_length() don't treat APR_EOF as a fatal error. Revision ChangesPath 1.32 +1 -1 apache-2.0/src/main/http_protocol.c Index: http_protocol.c

cvs commit: apache-2.0/src/main util_script.c

1999-10-31 Thread bjh
bjh 99/10/31 01:26:04 Modified:src/modules/standard mod_asis.c src/include util_script.h src/main util_script.c Log: Eliminate use of FILE * ap_get_os_file() in mod_asis by APRizing ap_scan_script_header_err(). Revision ChangesPath

cvs commit: apache-2.0/src/lib/apr/locks/os2 locks.c

1999-10-29 Thread bjh
bjh 99/10/29 00:17:17 Modified:src/lib/apr/locks/os2 locks.c Log: OS/2: Fix unnamed semaphores. Revision ChangesPath 1.5 +6 -1 apache-2.0/src/lib/apr/locks/os2/locks.c Index: locks.c

cvs commit: apache-2.0/src Configure

1999-10-29 Thread bjh
bjh 99/10/29 06:20:11 Modified:src Configure Log: Prevent -Zexe switch from being passed to APR configure in LDFLAGS. autoconf's configure has it's own way of dealing with .exe suffixes which is incompatible with this switch. Revision ChangesPath 1.15

cvs commit: apache-2.0/src/lib/apr/network_io/os2 sendrecv.c

1999-10-29 Thread bjh
bjh 99/10/29 06:36:29 Modified:src/lib/apr/include apr_network_io.h src/lib/apr/network_io/os2 sendrecv.c Log: Add new APR function ap_sendv(), a writev for APR sockets. Revision ChangesPath 1.15 +4 -0 apache-2.0/src/lib/apr/include

cvs commit: apache-2.0/src/lib/apr/network_io/os2 sendrecv.c

1999-10-29 Thread bjh
bjh 99/10/29 07:00:08 Modified:src/lib/apr/network_io/os2 sendrecv.c Log: OS/2: Return error status when something goes wrong in ap_send()/ap_recv(). This will probably be needed on other platforms as well. Revision ChangesPath 1.4 +12 -0 apache-2.0/src

cvs commit: apache-2.0/src/lib/apr/network_io/os2 os2calls.c os2calls.h Makefile.in networkio.h poll.c sendrecv.c sockets.c sockopt.c

1999-10-29 Thread bjh
bjh 99/10/29 07:21:04 Modified:src/lib/apr/file_io/os2 maperrorcode.c src/lib/apr/network_io/os2 Makefile.in networkio.h poll.c sendrecv.c sockets.c sockopt.c Added: src/lib/apr/network_io/os2 os2calls.c os2calls.h Log: OS/2: Bypass

cvs commit: apache-2.0/src/modules/mpm/spmt_os2 spmt_os2.c

1999-10-29 Thread bjh
bjh 99/10/29 07:37:33 Modified:src/os/os2 iol_socket.h iol_socket.c src/modules/mpm/spmt_os2 spmt_os2.c Log: OS/2: APRize iol_socket Revision ChangesPath 1.2 +3 -1 apache-2.0/src/os/os2/iol_socket.h Index: iol_socket.h

cvs commit: apache-2.0/src/os/os2 iol_socket.c

1999-10-29 Thread bjh
bjh 99/10/29 08:06:23 Modified:src/os/os2 iol_socket.c Log: Some cleaning up of OS/2 iol_socket.c. Revision ChangesPath 1.5 +2 -81 apache-2.0/src/os/os2/iol_socket.c Index: iol_socket.c

cvs commit: apache-2.0/src/lib/apr/threadproc/os2 proc.c

1999-10-26 Thread bjh
bjh 99/10/26 08:07:36 Modified:src/lib/apr/threadproc/os2 proc.c Log: OS/2: Make ap_create_process() work with scripts, allowing mod_cgi to work with all the CGI types it used to (REXX, Perl etc). Revision ChangesPath 1.8 +148 -26 apache-2.0/src/lib/apr

cvs commit: apache-2.0/src/lib/apr/threadproc/os2 proc.c

1999-10-26 Thread bjh
bjh 99/10/26 08:16:56 Modified:src/lib/apr/threadproc/os2 proc.c Log: OS/2: Put support for detached processes back into ap_create_process(), removed by previous change. Revision ChangesPath 1.9 +4 -1 apache-2.0/src/lib/apr/threadproc/os2/proc.c

cvs commit: apache-2.0/src/modules/standard mod_cgi.c

1999-10-25 Thread bjh
bjh 99/10/25 05:45:39 Modified:src/modules/standard mod_cgi.c Log: Make args to CGIs work. Revision ChangesPath 1.15 +6 -6 apache-2.0/src/modules/standard/mod_cgi.c Index: mod_cgi.c

cvs commit: apache-2.0/src/lib/apr/test Makefile.in

1999-10-24 Thread bjh
bjh 99/10/23 21:22:23 Modified:src/lib/apr .cvsignore Makefile.in src/lib/apr/test Makefile.in Log: Make a single APR library file. Revision ChangesPath 1.3 +1 -1 apache-2.0/src/lib/apr/.cvsignore Index: .cvsignore

cvs commit: apache-2.0/src/lib/apr/mmap/unix mmap.c

1999-10-24 Thread bjh
bjh 99/10/23 21:30:20 Modified:src/lib/apr/mmap/unix mmap.c Log: Don't try to compile mmap functions if the platform doesn't have mmap. Revision ChangesPath 1.3 +4 -0 apache-2.0/src/lib/apr/mmap/unix/mmap.c Index: mmap.c

cvs commit: apache-2.0/src/modules/mpm/spmt_os2 spmt_os2.c

1999-10-24 Thread bjh
bjh 99/10/24 06:08:31 Modified:src/lib/apr/include apr_network_io.h src/lib/apr/network_io/beos sockets.c src/lib/apr/network_io/os2 sockets.c src/lib/apr/network_io/unix sockets.c src/lib/apr/network_io/win32 sockets.c

cvs commit: apache-2.0/src/lib/apr/file_io/os2 fileacc.c

1999-10-18 Thread bjh
bjh 99/10/18 03:14:46 Modified:src/lib/apr/file_io/os2 fileacc.c Log: OS/2: Add ap_{get,set}_filedata() functions. Revision ChangesPath 1.5 +27 -0 apache-2.0/src/lib/apr/file_io/os2/fileacc.c Index: fileacc.c

cvs commit: apache-2.0/src/lib/apr/file_io/os2 fileio.h maperrorcode.c open.c readwrite.c

1999-10-18 Thread bjh
bjh 99/10/18 03:23:22 Modified:src/lib/apr/file_io/os2 fileio.h maperrorcode.c open.c readwrite.c Log: OS/2: Assorted file I/O cleanups fixes. - Implement ap_eof() - Fix flags passed to DosOpen when reading an existing file - Invalidate file status

cvs commit: apache-2.0/src/lib/apr/test testsig.c

1999-10-18 Thread bjh
bjh 99/10/18 03:32:16 Modified:src/lib/apr/test testsig.c Log: Improve/fix signal test program. Revision ChangesPath 1.6 +30 -6 apache-2.0/src/lib/apr/test/testsig.c Index: testsig.c

cvs commit: apache-2.0/src/lib/apr/locks/os2 locks.c

1999-10-18 Thread bjh
bjh 99/10/18 03:55:46 Modified:src/lib/apr/locks/os2 locks.c Log: OS/2: Add parameter scope parameter to ap_create_lock(), ignored for now. Revision ChangesPath 1.4 +1 -1 apache-2.0/src/lib/apr/locks/os2/locks.c Index: locks.c

cvs commit: apache-2.0/src/lib/apr/network_io/os2 sendrecv.c

1999-10-18 Thread bjh
bjh 99/10/18 04:06:39 Modified:src/lib/apr/network_io/os2 sendrecv.c Log: OS/2: Change timeout style in ap_send()/ap_receive() and change to use native thread safe select() instead of the EMX library's select(). Revision ChangesPath 1.2 +23 -22apache-2.0

cvs commit: apache-2.0/src/lib/apr/network_io/os2 sockets.c

1999-10-18 Thread bjh
bjh 99/10/18 04:14:21 Modified:src/lib/apr/network_io/os2 sockets.c Log: OS/2: Update sockets.c - add ap_getport(), ap_setipaddr(), ap_getipaddr(), ap_get_socketdata(), ap_set_socketdata(), ap_get_os_sock(), ap_put_os_sock() - Change ap_connect() to match unix version

cvs commit: apache-2.0/src/lib/apr/network_io/os2 networkio.h poll.c

1999-10-18 Thread bjh
bjh 99/10/18 04:36:04 Modified:src/lib/apr/network_io/os2 networkio.h poll.c Log: OS/2: Rework ap_poll() to use native thread safe select instead of the EMX C library select which isn't thread safe. Revision ChangesPath 1.3 +24 -5 apache-2.0/src/lib/apr

cvs commit: apache-2.0/src/lib/apr/time/os2 Makefile.in

1999-10-18 Thread bjh
bjh 99/10/18 05:06:55 Modified:src/lib/apr/file_io/os2 Makefile.in src/lib/apr/locks/os2 Makefile.in src/lib/apr/misc/os2 Makefile.in src/lib/apr/network_io/os2 Makefile.in src/lib/apr/threadproc/os2 Makefile.in

cvs commit: apache-2.0/src/lib/apr/file_io/os2 open.c

1999-10-18 Thread bjh
bjh 99/10/18 07:55:20 Modified:src/lib/apr/file_io/os2 open.c Log: OS/2: Fix flags to DosOpen() so that mutually exclusive flags aren't used at the same time. Revision ChangesPath 1.8 +1 -1 apache-2.0/src/lib/apr/file_io/os2/open.c Index: open.c

cvs commit: apache-2.0/src/lib/apr/threadproc/os2 thread.c

1999-10-14 Thread bjh
bjh 99/10/13 19:53:16 Modified:src/lib/apr/threadproc/os2 thread.c Log: OS/2: Fix a warning and parameter order to ap_create_threadattr() Revision ChangesPath 1.5 +2 -1 apache-2.0/src/lib/apr/threadproc/os2/thread.c Index: thread.c

cvs commit: apache-2.0/src/lib/apr/test Makefile.in

1999-10-14 Thread bjh
bjh 99/10/13 20:00:35 Modified:src/lib/apr configure.in src/lib/apr/test Makefile.in Log: Make use of -lcrypt conditional on actually having libcrypt.a Revision ChangesPath 1.20 +1 -0 apache-2.0/src/lib/apr/configure.in Index

cvs commit: apache-2.0/src/lib/apr/misc/unix start.c

1999-10-13 Thread bjh
bjh 99/10/13 02:31:37 Modified:src/lib/apr/misc/os2 start.c Makefile.in src/lib/apr/misc/unix start.c Log: OS/2: Use the (slightly tweaked) unix start.c instead of our own. Revision ChangesPath 1.7 +1 -87 apache-2.0/src/lib/apr/misc/os2

cvs commit: apache-2.0/src/lib/apr/file_io/os2 Makefile.in fileio.h filestat.c

1999-10-13 Thread bjh
bjh 99/10/13 02:38:09 Modified:src/lib/apr/file_io/os2 Makefile.in fileio.h filestat.c Log: OS/2: Some cleaning up for file_io. Revision ChangesPath 1.4 +10 -15apache-2.0/src/lib/apr/file_io/os2/Makefile.in Index: Makefile.in

cvs commit: apache-site/contributors index.html

1999-10-11 Thread bjh
bjh 99/10/10 21:20:39 Modified:contributors index.html Log: Add in my details. Revision ChangesPath 1.77 +12 -1 apache-site/contributors/index.html Index: index.html === RCS file: /home

cvs commit: apache-2.0/src/lib/apr acconfig.h

1999-10-11 Thread bjh
bjh 99/10/11 07:13:20 Modified:src/lib/apr acconfig.h Log: Map strcasecmp to stricmp if stricmp is available but strcasecmp isn't. Revision ChangesPath 1.6 +4 -0 apache-2.0/src/lib/apr/acconfig.h Index: acconfig.h

cvs commit: apache-2.0/src/lib/apr configure.in

1999-10-11 Thread bjh
bjh 99/10/11 07:15:28 Modified:src/lib/apr configure.in Log: OS/2: Compile with multi-threaded switch so we get things like thread safe errno etc. Revision ChangesPath 1.18 +1 -1 apache-2.0/src/lib/apr/configure.in Index: configure.in

cvs commit: apache-2.0/src/lib/apr/file_io/os2 fileacc.c

1999-10-11 Thread bjh
bjh 99/10/11 07:18:57 Modified:src/lib/apr/file_io/os2 fileacc.c Log: OS/2: implement ap_get_filetype() Revision ChangesPath 1.4 +34 -0 apache-2.0/src/lib/apr/file_io/os2/fileacc.c Index: fileacc.c

cvs commit: apache-2.0/src/lib/apr/threadproc/os2 proc.c threadproc.h

1999-10-11 Thread bjh
bjh 99/10/11 07:44:26 Modified:src/lib/apr/threadproc/os2 proc.c threadproc.h Log: OS/2: Implement detached processes fix some parameter ordering. Revision ChangesPath 1.4 +16 -8 apache-2.0/src/lib/apr/threadproc/os2/proc.c Index: proc.c

cvs commit: apache-2.0/src/lib/apr/file_io/os2 open.c

1999-10-11 Thread bjh
bjh 99/10/11 07:51:23 Modified:src/lib/apr/file_io/os2 open.c Log: OS/2: Implement ap_get_os_file()/ap_put_os_file() and fix ap_open() parameter order. Revision ChangesPath 1.4 +27 -1 apache-2.0/src/lib/apr/file_io/os2/open.c Index: open.c

cvs commit: apache-1.3/src/main util.c

1999-09-18 Thread bjh
bjh 99/09/18 03:57:08 Modified:src/main util.c Log: Configuration files are text files so open them in text mode. Some OS/2 (and probably DOS Windows) text editors like to put Ctrl-Z EOF markers at the end of the files they edit. Opening the config files in text mode

cvs commit: apache-2.0/src/lib/apr/misc/os2 start.c

1999-08-30 Thread bjh
bjh 99/08/30 07:39:51 Modified:src/lib/apr/misc/os2 start.c Log: APR OS/2 startup module: - fix parameter to ap_destroy_pool - add ap_set_userdata(), ap_get_userdata() and ap_initialize() functions. Revision ChangesPath 1.3 +40 -1 apache-2.0/src/lib/apr

cvs commit: apache-2.0/src/lib/apr/include apr_portable.h

1999-08-30 Thread bjh
bjh 99/08/30 07:42:32 Modified:src/lib/apr/include apr_portable.h Log: APR OS/2 - add ap_os_* type defines for OS/2. Revision ChangesPath 1.2 +13 -0 apache-2.0/src/lib/apr/include/apr_portable.h Index: apr_portable.h

cvs commit: apache-2.0/src/lib/apr configure.in

1999-08-30 Thread bjh
bjh 99/08/30 07:44:47 Modified:src/lib/apr configure.in Log: APR configure.in tweaks to allow test programs to build on OS/2. Revision ChangesPath 1.5 +4 -0 apache-2.0/src/lib/apr/configure.in Index: configure.in

cvs commit: apache-2.0/src/modules/mpm/spmt_os2 spmt_os2.c

1999-08-30 Thread bjh
bjh 99/08/30 07:47:21 Modified:src/modules/mpm/spmt_os2 spmt_os2.c Log: Update OS/2 MPM for latest hooks. Revision ChangesPath 1.10 +0 -3 apache-2.0/src/modules/mpm/spmt_os2/spmt_os2.c Index: spmt_os2.c

cvs commit: apache-2.0/src/lib/apr/time/os2 .cvsignore

1999-08-29 Thread bjh
bjh 99/08/29 05:19:06 Added: src/lib/apr/file_io/os2 .cvsignore src/lib/apr/locks/os2 .cvsignore src/lib/apr/misc/os2 .cvsignore src/lib/apr/network_io/os2 .cvsignore src/lib/apr/threadproc/os2 .cvsignore

cvs commit: apache-2.0/src/lib/apr/misc/os2 getopt.c Makefile.in

1999-08-29 Thread bjh
bjh 99/08/29 05:28:55 Modified:src/lib/apr/misc/os2 Makefile.in Added: src/lib/apr/misc/os2 getopt.c Log: Add getopt module to APR OS/2. Same as unix for now. Revision ChangesPath 1.4 +1 -1 apache-2.0/src/lib/apr/misc/os2/Makefile.in Index

cvs commit: apache-2.0/src/lib/apr/threadproc/os2 proc.c

1999-08-28 Thread bjh
bjh 99/08/28 01:05:46 Modified:src/lib/apr Makefile.in config.guess config.sub configure.in src/lib/apr/file_io/os2 readwrite.c src/lib/apr/network_io/os2 poll.c src/lib/apr/threadproc/os2 proc.c Log: Fix build of APR on OS/2

cvs commit: apache-1.3 STATUS

1999-08-20 Thread bjh
bjh 99/08/20 02:39:27 Modified:.STATUS Log: OS/2 binaries uploaded. Revision ChangesPath 1.751 +2 -2 apache-1.3/STATUS Index: STATUS === RCS file: /home/cvs/apache-1.3/STATUS,v

cvs commit: apache-1.3 configure

1999-08-13 Thread bjh
bjh 99/08/13 08:05:49 Modified:.configure Log: Translate module names to dll names for OS/2 so that they are no more than 8 characters long and have an extension of dll instead of so. Revision ChangesPath 1.101 +9 -0 apache-1.3/configure Index

cvs commit: apache-1.3/src ApacheCoreOS2.def

1999-08-10 Thread bjh
bjh 99/08/10 09:12:27 Modified:src ApacheCoreOS2.def Log: Add another missing export for OS/2 core dll. Revision ChangesPath 1.4 +1 -0 apache-1.3/src/ApacheCoreOS2.def Index: ApacheCoreOS2.def

cvs commit: apache-1.3/src/modules/standard Makefile.OS2

1999-08-10 Thread bjh
bjh 99/08/10 09:16:45 Modified:src/modules/standard Makefile.OS2 Log: Add rule to make OS/2 module for mod_vhost_alias Revision ChangesPath 1.3 +3 -1 apache-1.3/src/modules/standard/Makefile.OS2 Index: Makefile.OS2

cvs commit: apache-1.3/src ApacheCoreOS2.def

1999-08-09 Thread bjh
bjh 99/08/08 18:54:33 Modified:src ApacheCoreOS2.def Log: Add a few core dll exports. Revision ChangesPath 1.3 +3 -0 apache-1.3/src/ApacheCoreOS2.def Index: ApacheCoreOS2.def

cvs commit: apache-2.0/mpm/src/modules/mpm/spmt_os2 spmt_os2.c

1999-08-04 Thread bjh
bjh 99/08/03 16:39:12 Modified:mpm/src/modules/mpm/spmt_os2 spmt_os2.c Log: Update OS/2 mpm with new hooks. Revision ChangesPath 1.7 +8 -12 apache-2.0/mpm/src/modules/mpm/spmt_os2/spmt_os2.c Index: spmt_os2.c

cvs commit: apache-2.0/mpm/src/modules/mpm/spmt_os2 spmt_os2.c

1999-07-19 Thread bjh
bjh 99/07/19 00:32:23 Modified:mpm/src/modules/mpm/spmt_os2 spmt_os2.c Log: Releasing a semaphore you don't own isn't a fatal error. Also update with latest hook. Revision ChangesPath 1.5 +2 -2 apache-2.0/mpm/src/modules/mpm/spmt_os2/spmt_os2.c

cvs commit: apache-1.3/src/main util.c util_script.c

1999-07-19 Thread bjh
bjh 99/07/19 02:48:28 Modified:src/include httpd.h src/main util.c util_script.c Log: OS/2: Fix spawning of CGI scripts to use appropriate type of command line escapes for OS/2's cmd.exe. Revision ChangesPath 1.285 +1 -0 apache-1.3/src

cvs commit: apache-2.0/mpm/src/modules/mpm/spmt_os2 scoreboard.h spmt_os2.c

1999-07-13 Thread bjh
bjh 99/07/13 02:32:45 Modified:mpm/src/modules/mpm/spmt_os2 scoreboard.h spmt_os2.c Log: More cleanup on OS/2 spmt mpm including shutdown/restart processing and moving variables to appropriate scope. Revision ChangesPath 1.2 +3 -1 apache-2.0/mpm/src

cvs commit: apache-2.0/mpm/src/modules/mpm/spmt_os2 spmt_os2.c

1999-07-12 Thread bjh
bjh 99/07/12 01:35:39 Modified:mpm/src/modules/mpm/spmt_os2 spmt_os2.c Log: Assorted fixes for the OS/2 mpm: - pchild really should be thread local - clean_child_exit() should call _endthread(), not exit() - Use DosSleep() for delay in wait_or_timeout() instead

cvs commit: apache-2.0/mpm/src/os/os2 iol_socket.c util_os2.c

1999-07-12 Thread bjh
bjh 99/07/12 01:47:48 Modified:mpm/src/include ap_config.h mpm/src/os/os2 iol_socket.c util_os2.c Log: OS/2 EMX library's select() isn't thread safe so bypass it and go direct to the OS/2 API call. Unfortunately this only works on socket handles which

cvs commit: apache-2.0/mpm/src/os/os2 iol_socket.c iol_socket.h Makefile.tmpl util_os2.c

1999-07-11 Thread bjh
bjh 99/07/11 07:49:07 Modified:mpm/src Configure mpm/src/main http_protocol.c mpm/src/os/os2 Makefile.tmpl util_os2.c Added: mpm/src/modules/mpm/spmt_os2 .cvsignore Makefile.libdir Makefile.tmpl scoreboard.h spmt_os2.c

cvs commit: apache-2.0/mpm/src/modules/mpm/spmt_os2 - New directory

1999-07-09 Thread bjh
bjh 99/07/09 10:38:15 apache-2.0/mpm/src/modules/mpm/spmt_os2 - New directory

cvs commit: apache-1.3/src/os/os2 util_os2.c

1999-07-08 Thread bjh
bjh 99/07/08 09:46:21 Modified:src/os/os2 util_os2.c Log: Eliminate missing prototype warning for DosGetMessage() Revision ChangesPath 1.5 +1 -2 apache-1.3/src/os/os2/util_os2.c Index: util_os2.c

cvs commit: apache-1.3/src/main http_core.c http_protocol.c

1999-07-03 Thread bjh
bjh 99/07/03 00:59:50 Modified:src/main http_core.c http_protocol.c Log: These 'OS/2 HPFS filename case problem' fixes are now handled by ap_os_canonical_filename() in a better way. Revision ChangesPath 1.270 +0 -4 apache-1.3/src/main/http_core.c

  1   2   >