Jorge Schrauwen wrote:
In case anyone is curious, it's trivial. Open Apache.dsw creating Apache.sln,
create a new project flavor x86, choose the existing project flavor win32 as
it's starting point, and then let VisualStudio do it's thing.
You may also wish to add /D "WINNT" to the apr / libapr components compile
flags. I trust that nobody is attempting this on Win9x :)
Just relaying the info Jorge passed to me via IRC.
Bill
Yep, That sounds about correct.
You forgot to mention the small patch to makefile.win though:
--- Makefile.win 2005-12-02 23:02:23.265625000 +0100
+++ Makefile.win.orig 2005-12-02 05:46:12.000000000 +0100
@@ -127,7 +127,7 @@
!IFNDEF MAKEOPT
# Only default the behavior if MAKEOPT= is omitted
-!IF "($MAKE)" == "NMAKE"
+!IF "$(MAKE)" == "NMAKE"
# Microsoft NMake options
MAKEOPT=-nologo
!ELSEIF "($MAKE)" == "make"
Actually the syntax is $(MAKE) and it's already committed to 2.0/2.2 branches,
attributed to you :) Thanks again for the patch!
Bill