mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-22 15:57:15 +00:00
libacl: work with older versions, too
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).
This commit is contained in:
parent
b69c937cb7
commit
b04dcf4cbd
1 changed files with 1 additions and 1 deletions
2
setup.py
2
setup.py
|
@ -156,7 +156,7 @@ def lib_ext_kwargs(pc, prefix_env_var, lib_name, lib_pkg_name, pc_version, lib_s
|
|||
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:
|
||||
|
|
Loading…
Reference in a new issue