mirror of
https://github.com/microsoft/vcpkg.git
synced 2025-01-19 04:53:02 +08:00
[gdal] Fix building for 32bit Android and msvc with poppler (#25190)
* [gdal] Fix building for 32bit Android * [gdal] Adjust poppler version Fixes a compiler error * [gdal] Bump port version
This commit is contained in:
parent
4e443a30b9
commit
d2f3f30607
@ -137,7 +137,7 @@ macro(find_dependency_win)
|
||||
|
||||
if("poppler" IN_LIST FEATURES)
|
||||
list(APPEND NMAKE_OPTIONS "POPPLER_ENABLED=YES")
|
||||
list(APPEND NMAKE_OPTIONS "POPPLER_MAJOR_VERSION=22" "POPPLER_MINOR_VERSION=1") # Bump as needed
|
||||
list(APPEND NMAKE_OPTIONS "POPPLER_MAJOR_VERSION=22" "POPPLER_MINOR_VERSION=3") # Bump as needed
|
||||
list(APPEND NMAKE_OPTIONS "POPPLER_CFLAGS=-I${CURRENT_INSTALLED_DIR}/include -I${CURRENT_INSTALLED_DIR}/include/poppler /std:c++17")
|
||||
x_vcpkg_pkgconfig_get_modules(PREFIX POPPLER MODULES --msvc-syntax poppler LIBS)
|
||||
list(APPEND NMAKE_OPTIONS_REL "POPPLER_LIBS=${POPPLER_LIBS_RELEASE}")
|
||||
|
@ -288,6 +288,10 @@ else()
|
||||
list(APPEND CONF_OPTS "--with-tools=no")
|
||||
endif()
|
||||
|
||||
if(VCPKG_TARGET_IS_ANDROID AND (VCPKG_TARGET_ARCHITECTURE MATCHES "x86" OR VCPKG_TARGET_ARCHITECTURE MATCHES "arm"))
|
||||
list(APPEND CONF_OPTS --with-unix-stdio-64=no)
|
||||
endif()
|
||||
|
||||
vcpkg_configure_make(
|
||||
SOURCE_PATH "${SOURCE_PATH}/gdal"
|
||||
AUTOCONFIG
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "gdal",
|
||||
"version-semver": "3.4.3",
|
||||
"port-version": 1,
|
||||
"port-version": 2,
|
||||
"description": "The Geographic Data Abstraction Library for reading and writing geospatial raster and vector data",
|
||||
"homepage": "https://gdal.org",
|
||||
"license": null,
|
||||
|
@ -2458,7 +2458,7 @@
|
||||
},
|
||||
"gdal": {
|
||||
"baseline": "3.4.3",
|
||||
"port-version": 1
|
||||
"port-version": 2
|
||||
},
|
||||
"gdcm": {
|
||||
"baseline": "3.0.12",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "509d3e54670e6552cce8d811a329d6c28589392e",
|
||||
"version-semver": "3.4.3",
|
||||
"port-version": 2
|
||||
},
|
||||
{
|
||||
"git-tree": "8bdf8b8ff951c1ce8719c789e66ac3a166eed063",
|
||||
"version-semver": "3.4.3",
|
||||
|
Loading…
Reference in New Issue
Block a user