freetype-commit
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Git][freetype/freetype][master] 2 commits: * builds/windows/vc2010/free


From: Alexei Podtelezhnikov (@apodtele)
Subject: [Git][freetype/freetype][master] 2 commits: * builds/windows/vc2010/freetype.vcxproj (DlgCopy): Use transforms.
Date: Tue, 23 Nov 2021 21:11:49 +0000

Alexei Podtelezhnikov pushed to branch master at FreeType / FreeType

Commits:

2 changed files:

Changes:

  • builds/windows/vc2010/freetype.vcxproj
    ... ... @@ -501,15 +501,18 @@
    501 501
       <ImportGroup Label="ExtensionTargets">
    
    502 502
       </ImportGroup>
    
    503 503
       <ItemGroup>
    
    504
    -    <DlgSrc Include="..\..\..\subprojects\dlg\include\dlg\output.h" />
    
    505
    -    <DlgDst Include="..\..\..\include\dlg\output.h" />
    
    506
    -    <DlgSrc Include="..\..\..\subprojects\dlg\include\dlg\dlg.h" />
    
    507
    -    <DlgDst Include="..\..\..\include\dlg\dlg.h" />
    
    508
    -    <DlgSrc Include="..\..\..\subprojects\dlg\src\dlg\dlg.c" />
    
    509
    -    <DlgDst Include="..\..\..\src\dlg\dlg.c" />
    
    504
    +    <DlgSrc Include="..\..\..\subprojects\dlg\include\dlg\output.h">
    
    505
    +      <DlgDst>..\..\..\include\dlg\output.h</DlgDst>
    
    506
    +    </DlgSrc>
    
    507
    +    <DlgSrc Include="..\..\..\subprojects\dlg\include\dlg\dlg.h">
    
    508
    +      <DlgDst>..\..\..\include\dlg\dlg.h</DlgDst>
    
    509
    +    </DlgSrc>
    
    510
    +    <DlgSrc Include="..\..\..\subprojects\dlg\src\dlg\dlg.c">
    
    511
    +      <DlgDst>..\..\..\src\dlg\dlg.c</DlgDst>
    
    512
    +    </DlgSrc>
    
    510 513
       </ItemGroup>
    
    511
    -  <Target Name="DlgCopy" Inputs="@(DlgSrc)" Outputs="@(DlgDst)" Condition="Exists('..\..\..\subprojects\dlg\.git')">
    
    512
    -    <Copy SourceFiles="@(DlgSrc)" DestinationFiles="@(DlgDst)" SkipUnchangedFiles="true" />
    
    514
    +  <Target Name="DlgCopy" Inputs="@(DlgSrc)" Outputs="@(DlgSrc->'%(DlgDst)')" Condition="Exists('..\..\..\subprojects\dlg\.git')">
    
    515
    +    <Copy SourceFiles="@(DlgSrc)" DestinationFiles="@(DlgSrc->'%(DlgDst)')" />
    
    513 516
       </Target>
    
    514 517
       <Target Name="AfterBuild">
    
    515 518
         <ItemGroup>
    

  • src/truetype/ttpload.c
    ... ... @@ -565,7 +565,7 @@
    565 565
         if ( num_records > 255               ||
    
    566 566
              ( num_records > 0             &&
    
    567 567
                ( record_size > 0x10004UL ||
    
    568
    -             record_size & 3         ) ) )
    
    568
    +             record_size < 4         ) ) )
    
    569 569
         {
    
    570 570
           error = FT_THROW( Invalid_File_Format );
    
    571 571
           goto Fail;
    


  • reply via email to

    [Prev in Thread] Current Thread [Next in Thread]