Skip to content

Commit

Permalink
libspatialite: use version range for libxml2 and sqlite3 (#23667)
Browse files Browse the repository at this point in the history
* libspatialite: use version range for libxml2

* libspaliate: use version range for sqlite3

---------

Co-authored-by: Abril Rincón Blanco <[email protected]>
Co-authored-by: Luis Caro Campos <[email protected]>
  • Loading branch information
3 people authored Jan 7, 2025
1 parent ba6bc9c commit b33e9fc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions recipes/libspatialite/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ def layout(self):
def requirements(self):
# Included in public spatialite/sqlite.h
# https://www.gaia-gis.it/fossil/libspatialite/file?name=src/headers/spatialite/sqlite.h&ci=tip
self.requires("sqlite3/3.44.2", transitive_headers=True, transitive_libs=True)
self.requires("sqlite3/[>=3.44 <4]", transitive_headers=True, transitive_libs=True)
self.requires("zlib/[>=1.2.11 <2]")
if self.options.with_proj:
self.requires("proj/9.3.1")
Expand All @@ -100,7 +100,7 @@ def requirements(self):
if self.options.get_safe("with_rttopo"):
self.requires("librttopo/1.1.0")
if self.options.with_libxml2:
self.requires("libxml2/2.12.4")
self.requires("libxml2/[>=2.12.5 <3]")
if self.options.with_minizip:
self.requires("minizip/1.2.13")

Expand Down

0 comments on commit b33e9fc

Please sign in to comment.