summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2024-02-20 21:40:43 +0100
committerThomas Waldmann <tw@waldmann-edv.de>2024-02-20 21:40:43 +0100
commitb04dcf4cbdc79cffaafad1ad943d48889c14a0d1 (patch)
tree1dceac760cee9f30595c5c0eb6d75def87ddbaf2
parentb69c937cb72becd5c4935f53cb1e20608680e064 (diff)
libacl: work with older versions, too2.0.0b8
this was recently set to a relatively high minimum version when locating it via pkgconfig was added. this broke the binary builds on buster and bullseye. i don't think borg requires a specific libacl version as long as the api is compatible, so i now set this to 2.2.47 (from 2008).
-rw-r--r--setup.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/setup.py b/setup.py
index b95d4fa4a..7dcedb90d 100644
--- a/setup.py
+++ b/setup.py
@@ -156,7 +156,7 @@ if not on_rtd:
if sys.platform == "linux":
linux_ext_kwargs = members_appended(
dict(sources=[platform_linux_source]),
- lib_ext_kwargs(pc, "BORG_LIBACL_PREFIX", "acl", "libacl", ">=2.3.1"),
+ lib_ext_kwargs(pc, "BORG_LIBACL_PREFIX", "acl", "libacl", ">= 2.2.47"),
dict(extra_compile_args=cflags),
)
else: