]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Update some references to the old src tree structure.
authorRoy T. Fielding <fielding@apache.org>
Sun, 18 Feb 2001 07:38:50 +0000 (07:38 +0000)
committerRoy T. Fielding <fielding@apache.org>
Sun, 18 Feb 2001 07:38:50 +0000 (07:38 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88228 13f79535-47bb-0310-9956-ffa450edef68

docs/manual/platform/win_compiling.html

index a415747e41e8c92cfe8a4492789ed4642838fc22..f1a2a71c897bffd4d5d8617d4915d4bd0ccf1a49 100644 (file)
@@ -28,8 +28,7 @@
    command-line environment for command-line builds!</P>
 
 <P>First, unpack the Apache distribution into an appropriate
-   directory. Open a command-line prompt, and change to the
-   <CODE>src</CODE> subdirectory of the Apache distribution.</P>
+   directory. Open a command-line prompt and cd to that directory.</P>
 
 <P>The master Apache makefile instructions are contained in the
    <CODE>Makefile.win</CODE> file. To compile Apache on Windows, simply
@@ -45,7 +44,7 @@
 
 <P>Apache can also be compiled using VC++'s Visual Studio development
    environment. To simplify this process, a Visual Studio workspace,
-   Apache.dsw, is provided in the src folder.  This workspace exposes
+   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.</P>
@@ -55,7 +54,7 @@
    VisualStudio 5.0 (97) but you must first use the perl script command:</P>
 
 <PRE>
-    cd src\helpers
+    cd srclib\apr\build
     cvstodsp5.pl
 </PRE>
 
@@ -63,7 +62,7 @@
    however VisualStudio 97 in particular will not recognize the /ZI flag
    to the C compiler for the debugging mode.  This script toggles the
    new /ZI flag back to /Zi for Debug builds, among other adjustments.
-   The converse script in <CODE>src/helpers/dsp5tocvs.pl</CODE> will 
+   The converse script in <CODE>srclib\apr\build\dsp5tocvs.pl</CODE> will 
    reverse the adjustments, and we ask you to do so before submitting 
    patches against any .dsp project files.</P>
 
    .dsp projects of the Apache server in the following sequence:</P>
 
 <OL>
-   <LI><CODE>lib\apr\aprlib.dsp</CODE>
-   <LI><CODE>lib\apr\aprlibdll.dsp <EM>requires aprlib</EM></CODE>
-   <LI><CODE>lib\pcre\dftables.dsp</CODE>
-   <LI><CODE>lib\pcre\pcre.dsp <EM>requires dftables</EM></CODE>
-   <LI><CODE>lib\pcre\pcreposix.dsp <EM>requires dftables and pcre</EM></CODE>
-   <LI><CODE>lib\expat-lite\xmltok.dsp</CODE>
-   <LI><CODE>lib\expat-lite\xmlparse.dsp <EM>requires xmltok</EM></CODE>
+   <LI><CODE>srclib\apr\aprlib.dsp</CODE>
+   <LI><CODE>srclib\apr\aprlibdll.dsp <EM>requires aprlib</EM></CODE>
+   <LI><CODE>srclib\pcre\dftables.dsp</CODE>
+   <LI><CODE>srclib\pcre\pcre.dsp <EM>requires dftables</EM></CODE>
+   <LI><CODE>srclib\pcre\pcreposix.dsp <EM>requires dftables and pcre</EM></CODE>
+   <LI><CODE>srclib\expat-lite\xmltok.dsp</CODE>
+   <LI><CODE>srclib\expat-lite\xmlparse.dsp <EM>requires xmltok</EM></CODE>
    <LI><CODE>main\gen_uri_delims.dsp</CODE>
    <LI><CODE>main\gen_test_char.dsp</CODE>
    <LI><CODE>ApacheCore.dsp <EM>requires all of the above</EM></CODE>
    are defined in the Microsoft VisualStudio workspace file:
    
 <PRE>
-   src/Apache.dsw
+   Apache.dsw
 </PRE>
    
 <P>This assures that lower-level sources are rebuilt from within
    Makefile.win to move the compiled executables and dlls.  You may 
    personalize the INSTDIR= setting by changing the Settings for
    InstallBin, Build command line entry under the General tab.
-   The default from within the InstallBin.dsp project is one level up
-   (..) from the src tree.</P>
+   INSTDIR defaults to the same directory as the httpd source.</P>
 
 <P><STRONG>Warning about building Apache from the development tree</STRONG></P>