cvs commit: apache/src/nt mod_dll.c

1997-07-21 Thread Alexei Kosut
akosut  97/07/21 14:26:59

  Modified:. README.NT
   htdocs/manual  new_features_1_3.html
   htdocs/manual/mod  core.html directives.html index.html
   src/ntmod_dll.c
  Added:   htdocs/manual  windows.html
   htdocs/manual/mod  mod_dll.html
  Log:
  Create some docs on Apache for Windows. Note that some of this is
  tenative, and likely to change soon.
  
  Revision  ChangesPath
  1.2   +11 -0 apache/README.NT
  
  Index: README.NT
  ===
  RCS file: /export/home/cvs/apache/README.NT,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -c -C3 -r1.1 -r1.2
  *** README.NT 1997/06/15 19:22:22 1.1
  --- README.NT 1997/07/21 21:26:52 1.2
  ***
  *** 1,3 
  --- 1,14 
  + NOTE - About this File
  + ==
  + 
  + This file contains development information on Apache for Windows, not all
  + of which is relevant to the current version. For information on
  + installation and use of Apache for Windows, please see
  + http://www.apache.org/docs/windows.html, also available as
  + htdocs/manual/windows.html with this distribution.
  + 
  + Alexei Kosut <[EMAIL PROTECTED]> - July 21, 1997
  + 
Integration with official Apache sources


  
  
  
  1.10  +1 -2  apache/htdocs/manual/new_features_1_3.html
  
  Index: new_features_1_3.html
  ===
  RCS file: /export/home/cvs/apache/htdocs/manual/new_features_1_3.html,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -c -C3 -r1.9 -r1.10
  *** new_features_1_3.html 1997/07/19 08:58:31 1.9
  --- new_features_1_3.html 1997/07/21 21:26:53 1.10
  ***
  *** 30,37 



  ! Support for Windows NT/95
  ! [Documentation to be written]
Apache now supports the Windows NT and Windows 95 operating systems,
as well as the Unix systems supported in previos releases. Although the
Windows version of Apache may not be perform as well as on the Unix
  --- 30,36 



  ! Support for Windows NT/95
Apache now supports the Windows NT and Windows 95 operating systems,
as well as the Unix systems supported in previos releases. Although the
Windows version of Apache may not be perform as well as on the Unix
  
  
  
  1.1  apache/htdocs/manual/windows.html
  
  Index: windows.html
  ===
  
  
  
  Using Apache with Microsoft Windows
  
  
  
  
  
  
  Using Apache With Microsoft Windows
  
  This document explains how to compile, install, configure and run
 Apache 1.3a1 (or later) under Microsoft Windows. Please note that at
 this time, Windows support is entirely experimental, and is
 recommended only for experienced users. The Apache Group does not
 guarantee that this software will work as documented, or even at
 all. If you find any bugs, or wish to contribute in other ways, please
 use our http://www.apache.org/bug_report.html";>bug reporting
 page.
  
  
  
  
Requirements
Downloading Apache for Windows
Compiling Apache for Windows
Installing Apache for Windows
Using Apache for Windows
  
  
  
  
  Requirements
  
  Apache 1.3a1 requires the following:
  
  
Microsoft Windows NT 4.0*, or Windows 95.
An Intel-based PC-compatible capable of running above OS (exact
requirements unknown) with a connection to a TCP/IP network.
Microsoft Visual C++ 5.0 or later.
  
  
  * Apache may run with Windows NT 3.5.1, but
 has not been tested.
  
  Apache 1.3a1 is available only in source form. Future releases will
 contain prebuilt binaries for use by those without compilers (which we
 understand are the vast majority of Windows users), however the
 current release requires Microsoft Visual C++ 5.0 or later. The Apache
 Group is releasing 1.3a1 only as source to limit the alpha release to
 those who have the tools and knowledge to assist with the development
 processes.
  
  This documentation assumes good working knowledge of Microsoft
 Windows, Microsoft Visual C++, and the Apache web server (for
 Unix).
  
  Downloading Apache for Windows
  
  Information on the latest version of Apache can be found on the Apache
  web server at http://www.apache.org/";>http://www.apache.org/.  This will
  list the current release, any more recent alpha or beta-test release,
  together with details of mirror web and anonymous ftp sites.
  
  You will be able to download Apache 1.3a1 or a later release in
 several forms, including a WinZip (.zip)
 archive. Although this contains the same files as the others (likely
 .tar.gz and .tar.Z), it is recommended for
 Windows use, as all the files contained therein will cont

cvs commit: apache/src/nt mod_dll.c

1997-07-15 Thread Alexei Kosut
akosut  97/07/15 14:51:57

  Modified:src/ntmod_dll.c
  Log:
  Change LoadLibrary() to LoadLibraryEx(), to use a more appropriate search
  path.
  
  Revision  ChangesPath
  1.2   +2 -1  apache/src/nt/mod_dll.c
  
  Index: mod_dll.c
  ===
  RCS file: /export/home/cvs/apache/src/nt/mod_dll.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -c -C3 -r1.1 -r1.2
  *** mod_dll.c 1997/07/13 19:01:34 1.1
  --- mod_dll.c 1997/07/15 21:51:56 1.2
  ***
  *** 111,117 

if (been_there_done_that) return NULL;

  ! if (!(modhandle = LoadLibrary(szModuleFile)))
return pstrcat (cmd->pool, "Cannot load ", szModuleFile, " into server",
NULL);
 
  --- 111,118 

if (been_there_done_that) return NULL;

  ! if (!(modhandle = LoadLibraryEx(szModuleFile, NULL,
  ! LOAD_WITH_ALTERED_SEARCH_PATH)))
return pstrcat (cmd->pool, "Cannot load ", szModuleFile, " into server",
NULL);