Changeset 56044 in webkit


Ignore:
Timestamp:
Mar 16, 2010 12:08:06 AM (14 years ago)
Author:
eric@webkit.org
Message:

2010-03-15 Daniel Bates <dbates@rim.com>

Reviewed by Eric Seidel.

https://bugs.webkit.org/show_bug.cgi?id=36048

Detect if the Windows Platform SDK is missing when building with
Visual C++ Express Edition and inform the user to download it.

  • Scripts/webkitdirs.pm:
Location:
trunk/WebKitTools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitTools/ChangeLog

    r56040 r56044  
     12010-03-15  Daniel Bates  <dbates@rim.com>
     2
     3        Reviewed by Eric Seidel.
     4
     5        https://bugs.webkit.org/show_bug.cgi?id=36048
     6
     7        Detect if the Windows Platform SDK is missing when building with
     8        Visual C++ Express Edition and inform the user to download it.
     9
     10        * Scripts/webkitdirs.pm:
     11
    1122010-03-15  Adam Barth  <abarth@webkit.org>
    213
  • trunk/WebKitTools/Scripts/webkitdirs.pm

    r55829 r56044  
    10081008            die;
    10091009        }
     1010
     1011        my $windowsPlatformSDKPath = "$programFilesPath/Microsoft Platform SDK for Windows Server 2003 R2";
     1012        if (! -e $windowsPlatformSDKPath) {
     1013            print "*************************************************************\n";
     1014            print "Cannot find '$windowsPlatformSDKPath'\n";
     1015            print "Please download and install the Microsoft Windows Server 2003 R2\n";
     1016            print "Platform SDK from <http://www.microsoft.com/downloads/details.aspx?\n";
     1017            print "familyid=0baf2b35-c656-4969-ace8-e4c0c0716adb&displaylang=en>.\n\n";
     1018            print "Then follow step 2 in the Windows section of the \"Installing Developer\n";
     1019            print "Tools\" instructions at <http://www.webkit.org/building/tools.html>.\n";
     1020            print "*************************************************************\n";
     1021            die;
     1022        }
    10101023    }
    10111024
Note: See TracChangeset for help on using the changeset viewer.