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 2009/10/06 20:01:25 UTC

svn commit: r822384 - /httpd/mod_fcgid/trunk/Makefile-fcgid.win

Author: wrowe
Date: Tue Oct  6 18:01:25 2009
New Revision: 822384

URL: http://svn.apache.org/viewvc?rev=822384&view=rev
Log:
Fix sln/dsw/mak determination, as suggested by rjung

Modified:
    httpd/mod_fcgid/trunk/Makefile-fcgid.win

Modified: httpd/mod_fcgid/trunk/Makefile-fcgid.win
URL: http://svn.apache.org/viewvc/httpd/mod_fcgid/trunk/Makefile-fcgid.win?rev=822384&r1=822383&r2=822384&view=diff
==============================================================================
--- httpd/mod_fcgid/trunk/Makefile-fcgid.win (original)
+++ httpd/mod_fcgid/trunk/Makefile-fcgid.win Tue Oct  6 18:01:25 2009
@@ -23,12 +23,13 @@
 
 INSTDIR=\Apache22
 
-!IF EXIST("httpd.vcproj") && ([devenv /help > NUL 2>&1] == 0) \
+!IF EXIST("modules\fcgid\mod_fcgid.vcproj") \
+    && ([devenv /help > NUL 2>&1] == 0) \
     && !defined(USEMAK) && !defined(USEDSW)
 USESLN=1
 USEMAK=0
 USEDSW=0
-!ELSEIF EXIST("httpd.mak") && !defined(USEDSW)
+!ELSEIF EXIST("modules\fcgid\mod_fcgid.mak") && !defined(USEDSW)
 USESLN=0
 USEMAK=1
 USEDSW=0