1
1
mirror of https://gitlab.gnome.org/GNOME/gimp.git synced 2025-10-06 01:12:40 +02:00

build/windows: Do not build exiv2 on 32-bit since it uses ancient MSVCRT

This commit is contained in:
Bruno Lopes
2025-09-21 16:33:12 -03:00
parent 63b4d69e48
commit c472800eae

View File

@@ -139,16 +139,9 @@ function self_build ([string]$repo, [array]$branch, [array]$patches, [array]$opt
self_build babl
self_build gegl @('build/windows/patches/0001-meson-only-generate-CodeView-.pdb-symbols-on-Windows.patch') @('-Dworkshop=true')
if ("$env:MSYSTEM_PREFIX" -ne 'MINGW32')
{
$exiv2_version='v0.28.7'
self_build https://github.com/Exiv2/exiv2 "v0.28.7" @('https://github.com/Exiv2/exiv2/pull/3361.patch') @('-DCMAKE_DLL_NAME_WITH_SOVERSION=ON', '-DEXIV2_BUILD_EXIV2_COMMAND=OFF', '-DEXIV2_ENABLE_VIDEO=OFF')
}
else
{
$exiv2_version='v0.27.7'
}
self_build https://github.com/Exiv2/exiv2 "$exiv2_version" @('https://github.com/Exiv2/exiv2/pull/3361.patch') @('-DCMAKE_DLL_NAME_WITH_SOVERSION=ON', '-DEXIV2_BUILD_EXIV2_COMMAND=OFF', '-DEXIV2_ENABLE_VIDEO=OFF')
Set-Location $GIMP_DIR