You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by wr...@apache.org on 2007/12/17 22:43:27 UTC

svn commit: r605010 - /httpd/mod_ftp/trunk/README-FTP

Author: wrowe
Date: Mon Dec 17 13:43:23 2007
New Revision: 605010

URL: http://svn.apache.org/viewvc?rev=605010&view=rev
Log:
Fix win32 in-tree instructions

Modified:
    httpd/mod_ftp/trunk/README-FTP

Modified: httpd/mod_ftp/trunk/README-FTP
URL: http://svn.apache.org/viewvc/httpd/mod_ftp/trunk/README-FTP?rev=605010&r1=605009&r2=605010&view=diff
==============================================================================
--- httpd/mod_ftp/trunk/README-FTP (original)
+++ httpd/mod_ftp/trunk/README-FTP Mon Dec 17 13:43:23 2007
@@ -62,12 +62,22 @@
 
     devenv /useenv mod_ftp.sln
 
-On windows you can overlay mod_ftp into the httpd tree, however you
-would have to manually add the project mod_ftp.dsp to the Apache.dsw
-workspace, ensure the BuildBin project includes the mod_ftp project
-as a dependency, and for the mod_ftp project add dependencies of
-libhttpd, libapr and libaprutil.  Also note that mod_ftp.so needs to
-be added to the module installation lines in Makefile.win.
+On windows you can overlay mod_ftp source files into the httpd source
+file tree, and make the following changes for an in-tree build;
+
+ * Manually add the project mod_ftp.dsp to the Apache.dsw workspace.
+ * Ensure the BuildBin project includes the mod_ftp project dependency.
+ * Add mod_ftp project dependencies of libhttpd, libapr and libaprutil.
+ * Remove /D "FTP_APXS_BUILD" from the modules\ftp\mod_ftp.dsp
+   lines beginning with # ADD CPP ...
+ * You may remove /I "$(APACHE2_HOME)/include" from those # ADD CPP 
+   lines of modules\ftp\mod_ftp.dsp.
+ * You may remove /libpath:"$(APACHE2_HOME)\lib" from the # ADD LINK32 
+   lines of modules\ftp\mod_ftp.dsp.
+
+Note that mod_ftp.so needs to be added to the module installation 
+lines in Makefile.win, or you must manually copy the .so module from 
+modules\ftp\Release after compiling.