Hello,

Currently the windows make file in trunk causes nmake on VC6/SDK 2003 R2 to fail on Line 511, VC9 does not seem to have a problem with it. I have not tried on 10 and do not have 7 & 8.

The problem on 6 is if nmake/ide does not see the comment (#) as the first character of the line it then acts upon the line and the result is a fatal about the command #cd being unknown. All other commented out lines in the make file the # is the first character.

Can someone please fix this on line 511-513 of makefile.win moving the comment to the first character.

        #cd modules\session
# $(MAKE) $(MAKEOPT) -f mod_session_crypto.mak CFG="mod_session_crypto - Win32 $(LONG)" RECURSE=0 $(CTARGET)
        #cd ..\..

Thanks,
Gregg
--- makefile.orig       2010-02-26 15:36:08.000000000 -0800
+++ makefile.win        2010-06-17 15:35:27.906250000 -0700
@@ -508,9 +514,9 @@
         $(MAKE) $(MAKEOPT) -f mod_session_dbd.mak    CFG="mod_session_dbd - 
Win32 $(LONG)" RECURSE=0 $(CTARGET)
        cd ..\..
 !IF EXIST("srclib\openssl")
-       #cd modules\session
-       # $(MAKE) $(MAKEOPT) -f mod_session_crypto.mak CFG="mod_session_crypto 
- Win32 $(LONG)" RECURSE=0 $(CTARGET)
-       #cd ..\..
+#      cd modules\session
+#       $(MAKE) $(MAKEOPT) -f mod_session_crypto.mak CFG="mod_session_crypto - 
Win32 $(LONG)" RECURSE=0 $(CTARGET)
+#      cd ..\..
        cd modules\ssl
         $(MAKE) $(MAKEOPT) -f mod_ssl.mak         CFG="mod_ssl - Win32 
$(LONG)" RECURSE=0 $(CTARGET)
        cd ..\..

Reply via email to