There are many important points before you begin compiling Apache. See Using Apache with Microsoft Windows before you begin.
Compiling Apache requires the following environment to be properly installed;
"c:\Program Files\DevStudio\VC\Bin\vcvars32.bat"
"c:\Program Files\Platform SDK\setenv.bat"The Platform SDK files distributed with Visual C++ 6.0 and later are sufficient, so those users may skip this requirement.
First, unpack the Apache distribution into an appropriate directory. Open a command-line prompt and cd to that directory.
The master Apache makefile instructions are contained in the
Makefile.win
file. To compile Apache on Windows NT, simply
use one of the following commands to compiled the release or debug build,
respectively:
nmake /f Makefile.win _apacher nmake /f Makefile.win _apached
Either command will compile Apache. The latter will include debugging information in the resulting files, making it easier to find bugs and track down problems.
Apache can also be compiled using VC++'s VisualStudio development environment. To simplify this process, a VisualStudio workspace, Apache.dsw, is provided. This workspace exposes the entire list of working .dsp projects that are required for the complete Apache binary release. It includes dependencies between the projects to assure that they are built in the appropriate order.
Open the Apache.dsw workspace, and choose InstallBin (Release or Debug build, as desired) as the Active Project. InstallBin causes all related project to be build, and then invokes Makefile.win to move the compiled executables and dlls. You may personalize the INSTDIR= choice by changing InstallBin's Settings, General tab, Build command line entry. INSTDIR defaults to the /Apache2 directory.
The .dsp project files are distributed in Visual C++ 6.0 format. Visual C++ 5.0 (97) will recognize them with the single exception of the /ZI flag (which corresponds to the VC 5.0 /Zi flag for debugging symbols.) To quickly prepare the .dsp files for the Visual Studio 5.0 (97), you can run this command from the top-level httpd-2.0 directory:
perl srclib\apr\build\cvtdsp.pl -5You must type this command from the top level directory of the httpd source tree. Every VC6 .dsp project file within the current directory and below will be listed as it is converted. If you contribute back a patch that revises project files, please convert them back with the the -6 option instead of -5, which returns the project files to Visual Studio 6.0 format.
The Apache.dsw workspace and makefile.win nmake script both build the .dsp projects of the Apache server in the following sequence:
srclib\apr\apr.dsp
srclib\apr\libapr.dsp
srclib\apr-util\uri\gen_uri_delims.dsp
srclib\apr-util\aprutil.dsp
srclib\apr-util\libaprutil.dsp
srclib\pcre\dftables.dsp
srclib\pcre\pcre.dsp
srclib\pcre\pcreposix.dsp
srclib\expat-lite\libexpat.dsp
server\gen_test_char.dsp
libhttpd.dsp
Apache.dsp
In addition, the os\win32
subdirectory contains
project files for the optional modules.
modules\aaa\mod_auth_dbm.dsp
modules\aaa\mod_auth_anon.dsp
modules\aaa\mod_auth_digest.dsp
modules\cache\mod_file_cache.dsp
modules\dav\fs\mod_dav_fs.dsp
modules\dav\main\mod_dav.dsp
modules\generators\mod_info.dsp
modules\generators\mod_status.dsp
modules\mappers\mod_rewrite.dsp
modules\mappers\mod_speling.dsp
modules\metadata\mod_usertrack.dsp
modules\metadata\mod_cern_meta.dsp
modules\metadata\mod_headers.dsp
modules\metadata\mod_expires.dsp
modules\ssl\mod_ssl.dsp
modules\tls\mod_tls.dsp
The support\
folder contains project files for additional
programs that are not part of the Apache runtime, but are used by
the administrator to test Apache and maintain password and log files.
support\ab.dsp
support\htdigest.dsp
support\htpasswd.dsp
support\logresolve.dsp
support\rotatelogs.dsp
support\win32\wintty.dsp
Once Apache has been compiled, it needs to be installed in its server
root directory. The default is the \Apache2
directory, of the same drive.
To build and install all the files into the desired folder dir automatically, use one the following nmake commands:
nmake /f Makefile.win installr INSTDIR=dir nmake /f Makefile.win installd INSTDIR=dirThe dir argument to INSTDIR gives the installation directory; it can be omitted if Apache is to be installed into \Apache2.
This will install the following:
dir\bin\Apache.exe
- Apache executable
dir\bin\htdigest.exe
- Digest auth password file utility
dir\bin\htpasswd.exe
- Basic auth password file utility
dir\bin\logresolve.exe
- Log file dns name lookup utility
dir\bin\rotatelogs.exe
- Log file cycling utility
dir\bin\wintty.exe
- Console window utility
dir\bin\libapr.dll
- Apache Portable Runtime shared library
dir\bin\libaprutil.dll
- Apache Utility Runtime shared library
dir\bin\libhttpd.dll
- Apache Core library
dir\modules\mod_*.so
- Loadable Apache modules
dir\conf
- Configuration directory
dir\logs
- Empty logging directory
dir\include
- C language header files
dir\lib
- Static Link library files
dir\libexec
- DLL link library files
Warning about building Apache from the development tree
Only the .dsp files are maintained between release builds. The .mak files are NOT regenerated, due to the tremendous waste of reviewer's time. Therefore, you cannot rely on the NMAKE commands above to build revised .dsp project files unless you then export all .mak files yourself from the project. This is unnecessary if you build from within the Microsoft DeveloperStudio environment.