home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 November / CMCD1104.ISO / Software / Complet / Apache / apache_2.0.52-win32-x86-no_ssl.msi / Data.Cab / F278455_win_compiling.xml < prev    next >
Extensible Markup Language  |  2004-04-17  |  18KB  |  426 lines

  1. <?xml version="1.0" encoding="UTF-8" ?>
  2. <!DOCTYPE manualpage SYSTEM "../style/manualpage.dtd">
  3. <?xml-stylesheet type="text/xsl" href="../style/manual.en.xsl"?>
  4. <!-- $Revision: 1.2.2.6 $ -->
  5.  
  6. <!--
  7.  Copyright 2002-2004 The Apache Software Foundation
  8.  
  9.  Licensed under the Apache License, Version 2.0 (the "License");
  10.  you may not use this file except in compliance with the License.
  11.  You may obtain a copy of the License at
  12.  
  13.      http://www.apache.org/licenses/LICENSE-2.0
  14.  
  15.  Unless required by applicable law or agreed to in writing, software
  16.  distributed under the License is distributed on an "AS IS" BASIS,
  17.  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18.  See the License for the specific language governing permissions and
  19.  limitations under the License.
  20. -->
  21.  
  22. <manualpage metafile="win_compiling.xml.meta">
  23.   <parentdocument href="./">Platform Specific Notes</parentdocument>
  24.  
  25.   <title>Compiling Apache for Microsoft Windows</title>
  26.  
  27.   <summary>
  28.  
  29.     <p>There are many important points before you begin compiling
  30.     Apache. See <a href="windows.html">Using Apache with Microsoft
  31.     Windows</a> before you begin.</p>
  32.  
  33.   </summary>
  34.  
  35.   <section id="requirements">
  36.  
  37.     <title>Requirements</title>
  38.  
  39.     <p>Compiling Apache requires the following environment to be
  40.     properly installed:</p>
  41.  
  42.     <ul>
  43.       <li>
  44.         <p>Disk Space</p>
  45.         <p>Make sure you have at least 50 MB of free disk space
  46.         available. After installation Apache requires approximately
  47.         10 MB of disk space, plus space for log and cache files,
  48.         which can grow rapidly. The actual disk space requirements
  49.         will vary considerably based on your chosen configuration and
  50.         any third-party modules or libraries.</p>
  51.       </li>
  52.  
  53.       <li>
  54.         <p>Microsoft Visual C++ 5.0 or higher.</p>
  55.         <p>Apache can be built using the command line tools, or from
  56.         within the Visual Studio IDE Workbench.  The command line
  57.         build requires the environment to reflect the <code>PATH</code>,
  58.         <code>INCLUDE</code>, <code>LIB</code> and other variables
  59.         that can be configured with the <code>vcvars32</code> batch file:</p>
  60.  
  61.         <example>
  62.           "c:\Program Files\DevStudio\VC\Bin\vcvars32.bat"
  63.         </example>
  64.       </li>
  65.  
  66.       <li>
  67.         <p>The Windows Platform SDK.</p>
  68.         <p>Visual C++ 5.0 builds require an updated Microsoft Windows
  69.         Platform SDK to enable some Apache features. For command line
  70.         builds, the Platform SDK environment is prepared by the
  71.         <code>setenv</code> batch file:</p>
  72.  
  73.         <example>
  74.           "c:\Program Files\Platform SDK\setenv.bat"
  75.         </example>
  76.  
  77.         <p>The Platform SDK files distributed with Visual C++ 6.0 and
  78.         later are sufficient, so users of later version may skip
  79.         this requirement.</p>
  80.  
  81.         <note>Note that the Windows Platform SDK update is required
  82.         to enable all supported <module>mod_isapi</module> features.
  83.         Without a recent update, Apache will issue warnings under
  84.         MSVC++ 5.0 that some <module>mod_isapi</module> features
  85.         will be disabled. Look for the update at <a
  86.         href="http://msdn.microsoft.com/downloads/sdks/platform/platform.asp"
  87.         >http://msdn.microsoft.com/downloads/sdks/platform/platform.asp</a>.</note>
  88.       </li>
  89.  
  90.       <li>
  91.         <p>The awk utility (awk, gawk or similar).</p>
  92.         <p>To install Apache within the build system, several files are
  93.         modified using the <code>awk.exe</code> utility. awk was chosen since it
  94.         is a very small download (compared with Perl or WSH/VB) and
  95.         accomplishes the task of generating files. Brian Kernighan's
  96.         <a href="http://cm.bell-labs.com/cm/cs/who/bwk/"
  97.         >http://cm.bell-labs.com/cm/cs/who/bwk/</a>
  98.         site has a compiled native Win32 binary,
  99.         <a href="http://cm.bell-labs.com/cm/cs/who/bwk/awk95.exe"
  100.         >http://cm.bell-labs.com/cm/cs/who/bwk/awk95.exe</a> which
  101.         you must save with the name <code>awk.exe</code> rather than
  102.         <code>awk95.exe</code>.</p>
  103.  
  104.         <note>Note that Developer Studio IDE will only find
  105.         <code>awk.exe</code> from the Tools menu Options... Directories
  106.         tab (the Projects - VC++ Directories pane in Developer Studio 7.0)
  107.         listing Executable file paths. Add the path for <code>awk.exe</code>
  108.         to this list, and your system <code>PATH</code> environment variable,
  109.         as needed.</note>
  110.  
  111.         <note>Also note that if you are using Cygwin (<a href="http://www.cygwin.com/"
  112.         >http://www.cygwin.com/</a>) the awk utility is named <code>gawk.exe</code> and
  113.         that the file <code>awk.exe</code> is really a symlink to the <code>gawk.exe</code>
  114.         file. The Windows command shell does not recognize symlinks, and because of that
  115.         building InstallBin will fail. A workaround is to delete <code>awk.exe</code> from
  116.         the cygwin installation and rename <code>gawk.exe</code> to <code>awk.exe</code>.</note>
  117.       </li>
  118.  
  119.       <li>
  120.         <p>[Optional] OpenSSL libraries (for <module>mod_ssl</module>
  121.         and <code>ab.exe</code> with ssl support)</p>
  122.         <p><strong>Caution: there are significant restrictions and
  123.         prohibitions on the use and distribution of strong cryptography
  124.         and patented intellectual property throughout the world.</strong>
  125.         OpenSSL includes strong cryptography controlled by both export
  126.         regulations and domestic law, as well as intellectual property
  127.         protected by patent, in the United States and elsewhere.  Neither
  128.         the Apache Software Foundation nor the OpenSSL project can provide
  129.         legal advise regarding possession, use, or distribution of the code
  130.         provided by the OpenSSL project. <strong>Consult your own legal
  131.         counsel, you are responsible for your own actions.</strong></p>
  132.  
  133.         <p>OpenSSL must be installed into a <code>srclib</code> subdirectory named
  134.         <code>openssl</code>, obtained from <a href="http://www.openssl.org/source/"
  135.         >http://www.openssl.org/source/</a>, in order to compile <module>mod_ssl</module>
  136.         or the abs project (<code>ab.exe</code> with SSL support.) To prepare OpenSSL
  137.         for both <code>release</code> and <code>debug</code> builds of Apache, and
  138.         disable the patent protected features in 0.9.7,  you might use the following
  139.         build commands:</p>
  140.  
  141.         <example>
  142.           perl Configure VC-WIN32<br />
  143.           perl util\mkfiles.pl >MINFO<br />
  144.           perl util\mk1mf.pl dll no-asm no-mdc2 no-rc5 no-idea VC-WIN32 >makefile<br />
  145.           perl util\mk1mf.pl dll debug no-asm no-mdc2 no-rc5 no-idea VC-WIN32 >makefile.dbg<br />
  146.           perl util\mkdef.pl 32 libeay no-asm no-mdc2 no-rc5 no-idea >ms\libeay32.def<br />
  147.           perl util\mkdef.pl 32 ssleay no-asm no-mdc2 no-rc5 no-idea >ms\ssleay32.def<br />
  148.           nmake<br />
  149.           nmake -f makefile.dbg
  150.         </example>
  151.  
  152.       </li>
  153.  
  154.       <li>
  155.         <p>[Optional] zlib sources (for <module>mod_deflate</module>)</p>
  156.         <p>Zlib must be installed into a <code>srclib</code> subdirectory named
  157.         <code>zlib</code>, however those sources need not be compiled. The build system
  158.         will compile the compression sources directly into the <module>mod_deflate</module>
  159.         module. Zlib can be obtained from <a href="http://www.gzip.org/zlib/"
  160.         >http://www.gzip.org/zlib/</a> -- <module>mod_deflate</module> is
  161.         confirmed to build correctly with version 1.1.4.</p>
  162.       </li>
  163.  
  164.     </ul>
  165.  
  166.   </section>
  167.  
  168.   <section id="commandbuild">
  169.  
  170.     <title>Command-Line Build</title>
  171.  
  172.     <p>First, unpack the Apache distribution into an appropriate
  173.     directory. Open a command-line prompt and <code>cd</code> to that
  174.     directory.</p>
  175.  
  176.     <p>The master Apache makefile instructions are contained in the
  177.     <code>Makefile.win</code> file. To compile Apache on Windows
  178.     NT, simply use one of the following commands to compiled the
  179.     <code>release</code> or <code>debug</code> build, respectively:</p>
  180.  
  181.     <example><pre>
  182. nmake /f Makefile.win _apacher
  183.  
  184. nmake /f Makefile.win _apached
  185.     </pre></example>
  186.  
  187.     <p>Either command will compile Apache. The latter will include
  188.     debugging information in the resulting files, making it easier
  189.     to find bugs and track down problems.</p>
  190.  
  191.   </section>
  192.  
  193.   <section id="workspacebuild">
  194.  
  195.     <title>Developer Studio Workspace IDE Build</title>
  196.  
  197.     <p>Apache can also be compiled using VC++'s Visual Studio
  198.     development environment. To simplify this process, a
  199.     Visual Studio workspace, <code>Apache.dsw</code>, is provided.
  200.     This workspace exposes the entire list of working <code>.dsp</code>
  201.     projects that are required for the complete Apache binary release.
  202.     It includes dependencies between the projects to assure that they
  203.     are built in the appropriate order.</p>
  204.  
  205.     <p>Open the <code>Apache.dsw</code> workspace, and select
  206.     <code>InstallBin</code> (<code>Release</code> or <code>Debug</code> build,
  207.     as desired) as the Active Project. <code>InstallBin</code> causes all
  208.     related project to be built, and then invokes <code>Makefile.win</code> to
  209.     move the compiled executables and dlls. You may personalize the
  210.     <code>INSTDIR=</code> choice by changing <code>InstallBin</code>'s Settings,
  211.     General tab, Build command line entry. <code>INSTDIR</code> defaults to the
  212.     <code>/Apache2</code> directory. If you only want a test compile (without
  213.     installing) you may build the <code>BuildBin</code> project instead.</p>
  214.  
  215.     <p>The <code>.dsp</code> project files are distributed in Visual
  216.     C++ 6.0 format. Visual C++ 5.0 (97) will recognize them. Visual C++
  217.     7.0 (.net) must convert <code>Apache.dsw</code> plus the <code>.dsp</code>
  218.     files into an <code>Apache.sln</code> plus <code>.msproj</code> files,
  219.     be sure you reconvert the <code>.msproj</code> file if any of the source
  220.     <code>.dsp</code> files change! This is really trivial, just open
  221.     <code>Apache.dsw</code> in the VC++ 7.0 IDE once again.</p>
  222.  
  223.     <p>Visual C++ 7.0 (.net) users should also use the Build
  224.     menu, Configuration Manager dialog to uncheck both the <code>Debug</code>
  225.     and <code>Release</code> Solution modules abs, <module>mod_ssl</module>
  226.     and <module>mod_deflate</module>.
  227.     These modules are built by invoking <code>nmake</code> or the IDE directly
  228.     with the <code>BinBuild</code> target to build those modules explicitly,
  229.     only if the <code>srclib</code> directories <code>openssl</code>
  230.     and/or <code>zlib</code> exist.</p>
  231.  
  232.     <p>Exported <code>.mak</code> files pose a greater hassle, but they are
  233.     required for Visual C++ 5.0 users to build <module>mod_ssl</module>,
  234.     abs (ab with SSL support) and/or <module>mod_deflate</module>.
  235.     VC++ 7.0 (.net) users also benefit, <code>nmake</code> builds
  236.     are faster than <code>binenv</code> builds.
  237.     Build the entire project from within the VC++ 5.0 or 6.0 IDE,
  238.     then use the Project Menu Export for all makefiles.
  239.     You must build the projects first in order to create all dynamic
  240.     auto-generated targets, so that dependencies can be parsed
  241.     correctly. Run the following command to fix the paths so they
  242.     will build anywhere:</p>
  243.  
  244.     <example>
  245.       perl srclib\apr\build\fixwin32mak.pl
  246.     </example>
  247.  
  248.     <p>You must type this command from the <em>top level</em>
  249.     directory of the <code>httpd</code> source tree. Every
  250.     <code>.mak</code> and <code>.dep</code> project file within
  251.     the current directory and below will be corrected, and the
  252.     timestamps adjusted to reflect the <code>.dsp</code>.</p>
  253.  
  254.     <p>If you contribute back a patch that revises project files, we
  255.     must commit project files in Visual Studio 6.0 format. Changes
  256.     should be simple, with minimal compilation and linkage flags that
  257.     will be recognized by all VC++ 5.0 through 7.0 environments.</p>
  258.  
  259.   </section>
  260.  
  261.   <section id="projectcomponents">
  262.  
  263.     <title>Project Components</title>
  264.  
  265.     <p>The <code>Apache.dsw</code> workspace and <code>makefile.win</code>
  266.     <code>nmake</code> script both build the <code>.dsp</code> projects
  267.     of the Apache server in the following sequence:</p>
  268.  
  269.     <ol>
  270.       <li><code>srclib\apr\apr.dsp</code></li>
  271.  
  272.       <li><code>srclib\apr\libapr.dsp</code></li>
  273.  
  274.       <li><code>srclib\apr-util\uri\gen_uri_delims.dsp</code></li>
  275.  
  276.       <li><code>srclib\apr-util\xml\expat\lib\xml.dsp</code></li>
  277.  
  278.       <li><code>srclib\apr-util\aprutil.dsp</code></li>
  279.  
  280.       <li><code>srclib\apr-util\libaprutil.dsp</code></li>
  281.  
  282.       <li><code>srclib\pcre\dftables.dsp</code></li>
  283.  
  284.       <li><code>srclib\pcre\pcre.dsp</code></li>
  285.  
  286.       <li><code>srclib\pcre\pcreposix.dsp</code></li>
  287.  
  288.       <li><code>server\gen_test_char.dsp</code></li>
  289.  
  290.       <li><code>libhttpd.dsp</code></li>
  291.  
  292.       <li><code>Apache.dsp</code></li>
  293.     </ol>
  294.  
  295.     <p>In addition, the <code>modules\</code> subdirectory tree contains
  296.     project files for the majority of the modules.</p>
  297.  
  298.     <p>The <code>support\</code> directory contains project files for
  299.     additional programs that are not part of the Apache runtime,
  300.     but are used by the administrator to test Apache and maintain
  301.     password and log files. Windows-specific support projects are
  302.     broken out in the <code>support\win32\</code> directory.</p>
  303.  
  304.     <ol>
  305.       <li><code>support\ab.dsp</code></li>
  306.  
  307.       <li><code>support\htdigest.dsp</code></li>
  308.  
  309.       <li><code>support\htpasswd.dsp</code></li>
  310.  
  311.       <li><code>support\logresolve.dsp</code></li>
  312.  
  313.       <li><code>support\rotatelogs.dsp</code></li>
  314.  
  315.       <li><code>support\win32\ApacheMonitor.dsp</code></li>
  316.  
  317.       <li><code>support\win32\wintty.dsp</code></li>
  318.     </ol>
  319.  
  320.     <p>Once Apache has been compiled, it needs to be installed in
  321.     its server root directory. The default is the
  322.     <code>\Apache2</code> directory, of the same drive.</p>
  323.  
  324.     <p>To build and install all the files into the desired folder
  325.     <em>dir</em> automatically, use one of the following
  326.     <code>nmake</code> commands:</p>
  327.  
  328.     <example><pre>
  329. nmake /f Makefile.win installr INSTDIR=<em>dir</em>
  330.  
  331. nmake /f Makefile.win installd INSTDIR=<em>dir</em>
  332.     </pre></example>
  333.  
  334.     <p>The <em>dir</em> argument to <code>INSTDIR</code> gives
  335.     the installation directory; it can be omitted if Apache is
  336.     to be installed into <code>\Apache2</code>.</p>
  337.  
  338.     <p>This will install the following:</p>
  339.  
  340.     <ul>
  341.       <li><code><em>dir</em>\bin\Apache.exe</code> - Apache
  342.       executable</li>
  343.  
  344.       <li><code><em>dir</em>\bin\ApacheMonitor.exe</code> - Service
  345.       monitor taskbar icon utility</li>
  346.  
  347.       <li><code><em>dir</em>\bin\htdigest.exe</code> - Digest auth
  348.       password file utility</li>
  349.  
  350.       <li><code><em>dir</em>\bin\htdbm.exe</code> - SDBM auth
  351.       database password file utility</li>
  352.  
  353.       <li><code><em>dir</em>\bin\htpasswd.exe</code> - Basic auth
  354.       password file utility</li>
  355.  
  356.       <li><code><em>dir</em>\bin\logresolve.exe</code> - Log file
  357.       dns name lookup utility</li>
  358.  
  359.       <li><code><em>dir</em>\bin\rotatelogs.exe</code> - Log file
  360.       cycling utility</li>
  361.  
  362.       <li><code><em>dir</em>\bin\wintty.exe</code> - Console window
  363.       utility</li>
  364.  
  365.       <li><code><em>dir</em>\bin\libapr.dll</code> - Apache
  366.       Portable Runtime shared library</li>
  367.  
  368.       <li><code><em>dir</em>\bin\libaprutil.dll</code> - Apache
  369.       Utility Runtime shared library</li>
  370.  
  371.       <li><code><em>dir</em>\bin\libhttpd.dll</code> - Apache Core
  372.       library</li>
  373.  
  374.       <li><code><em>dir</em>\modules\mod_*.so</code> - Loadable
  375.       Apache modules</li>
  376.  
  377.       <li><code><em>dir</em>\conf</code> - Configuration
  378.       directory</li>
  379.  
  380.       <li><code><em>dir</em>\logs</code> - Empty logging
  381.       directory</li>
  382.  
  383.       <li><code><em>dir</em>\include</code> - C language header
  384.       files</li>
  385.  
  386.       <li><code><em>dir</em>\lib</code> - Link library files</li>
  387.     </ul>
  388.  
  389.     <section id="projectcomponents-warn">
  390.  
  391.       <title>Warning about building Apache from the development tree</title>
  392.  
  393.       <note>Note only the <code>.dsp</code> files are maintained between <code>release</code>
  394.       builds. The <code>.mak</code> files are NOT regenerated, due to the tremendous
  395.       waste of reviewer's time. Therefore, you cannot rely on the <code>NMAKE</code>
  396.       commands above to build revised <code>.dsp</code> project files unless you
  397.       then export all <code>.mak</code> files yourself from the project. This is
  398.       unnecessary if you build from within the Microsoft
  399.       Developer Studio environment.</note>
  400.  
  401.       <note>Also note it is very worthwhile to build the <code>BuildBin</code>
  402.       target project (or the command line <code>_apacher</code> or
  403.       <code>_apached</code> target) prior to exporting the make files.
  404.       Many files are autogenerated in the build process. Only a full
  405.       build provides all of the dependent files required to build proper
  406.       dependency trees for correct build behavior.</note>
  407.  
  408.       <p>In order to create distribution <code>.mak</code> files, always review
  409.       the generated <code>.mak</code> (or <code>.dep</code>) dependencies for
  410.       Platform SDK or other garbage includes. The <code>DevStudio\SharedIDE\bin\</code>
  411.       (VC5) or <code>DevStudio\Common\MSDev98\bin\</code> (VC6) directory contains
  412.       the <code>sysincl.dat</code> file, which must list all exceptions. Update this
  413.       file (including both forward and backslashed paths, such as both
  414.       <code>sys/time.h</code> and <code>sys\time.h</code>) to include such dependencies.
  415.       Including local-install paths in a distributed <code>.mak</code> file will
  416.       cause the build to fail completely. And don't forget to run
  417.       <code>srclib/apr/build/fixwin32mak.pl</code> in order to fix absolute
  418.       paths within the <code>.mak</code> files.</p>
  419.  
  420.     </section>
  421.  
  422.   </section>
  423.  
  424. </manualpage>
  425.  
  426.