[pixman] Improve Arm detection (#8736)

This commit is contained in:
Michał Janiszewski 2019-10-25 23:38:23 +02:00 committed by Robert Schumacher
parent 83b1998ed3
commit 6a37e1a9af
2 changed files with 2 additions and 2 deletions

View File

@ -50,7 +50,7 @@ set(PIXMAN_DEFS
PACKAGE_BUGREPORT=""
)
if(VCPKG_TARGET_TRIPLET STREQUAL arm64-windows OR VCPKG_TARGET_TRIPLET STREQUAL arm-windows)
if(VCPKG_TARGET_ARCHITECTURE STREQUAL arm64 OR VCPKG_TARGET_ARCHITECTURE STREQUAL arm)
# don't enable SSE2 for arm64-windows and arm-windows
else()
# The USE_SSE2 definition lets it use SSE2 instructions for speed. Every x86/64 target machine should have SSE2 these days.

View File

@ -1,4 +1,4 @@
Source: pixman
Version: 0.38.0-3
Version: 0.38.0-4
Homepage: https://www.cairographics.org/releases
Description: Pixman is a low-level software library for pixel manipulation, providing features such as image compositing and trapezoid rasterization.