Changeset 152233 in webkit


Ignore:
Timestamp:
Jul 1, 2013 11:12:31 AM (11 years ago)
Author:
Brent Fulgham
Message:

[Windows] Unreviewed correction to DEBUG_ALL target. Target was undefining DEBUG_ALL and DEBUG_INTERNAL,
which prevented proper build operation.

  • win/tools/vsprops/debugsuffix.props: We should DEFINE (not UNDEFINE) the DEBUG_ALL and DEBUG_INTERNAL

macros when building with 'debugsuffix' target.

Location:
trunk/WebKitLibraries
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKitLibraries/ChangeLog

    r151706 r152233  
     12013-07-01  Brent Fulgham  <bfulgham@apple.com>
     2
     3        [Windows] Unreviewed correction to DEBUG_ALL target.  Target was undefining DEBUG_ALL and DEBUG_INTERNAL,
     4        which prevented proper build operation.
     5
     6        * win/tools/vsprops/debugsuffix.props: We should DEFINE (not UNDEFINE) the DEBUG_ALL and DEBUG_INTERNAL
     7        macros when building with 'debugsuffix' target.
     8
    192013-06-18  Roger Fong  <roger_fong@apple.com>
    210
  • trunk/WebKitLibraries/win/tools/vsprops/debugsuffix.props

    r149220 r152233  
    99  </PropertyGroup>
    1010  <ItemDefinitionGroup>
    11     <ClCompile>
    12       <UndefinePreprocessorDefinitions>DEBUG_INTERNAL;DEBUG_ALL;%(UndefinePreprocessorDefinitions)</UndefinePreprocessorDefinitions>
    13     </ClCompile>
     11    <ClCompile />
    1412    <Lib>
    1513      <OutputFile>$(OutDir)\$(ProjectName)$(DebugSuffix).lib</OutputFile>
    1614    </Lib>
     15    <ClCompile>
     16      <PreprocessorDefinitions>DEBUG_INTERNAL;DEBUG_ALL;%(PreprocessorDefinitions)</PreprocessorDefinitions>
     17    </ClCompile>
    1718  </ItemDefinitionGroup>
    1819  <ItemGroup>
    1920    <BuildMacro Include="DebugSuffix">
    2021      <Value>$(DebugSuffix)</Value>
     22      <EnvironmentVariable>true</EnvironmentVariable>
    2123    </BuildMacro>
    2224  </ItemGroup>
Note: See TracChangeset for help on using the changeset viewer.