From: Gregg Lewis Smith Date: Mon, 13 May 2013 19:29:01 +0000 (+0000) Subject: MSVC 7, 8 & 9 use the .vcproj extension X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=344aa816f6f4c55b39085ce1d4208383e833ae79;p=thirdparty%2Fapache%2Fhttpd.git MSVC 7, 8 & 9 use the .vcproj extension MSVC 10 & 11 use the .vcxproj extension Apache.sln is common to all above versions This allows proper detection and use of devenv in all these versions git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1482041 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/Makefile.win b/Makefile.win index f1916951070..1b967256fca 100644 --- a/Makefile.win +++ b/Makefile.win @@ -46,7 +46,7 @@ # so the server root should be given in forward slashes (quoted), # preferably with the drive designation! -!IF EXIST("httpd.vcproj") && ([devenv /help > NUL 2>&1] == 0) \ +!IF EXIST("Apache.sln") && ([devenv /help > NUL 2>&1] == 0) \ && !defined(USEMAK) && !defined(USEDSW) USESLN=1 USEMAK=0