From 05f776d4d75ca5d8491a7dc28907ee84a27867a9 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Sun, 16 Jul 2023 05:46:44 +0530 Subject: [PATCH] Replace bundling of librsync with libxxhash --- bypy/linux/__main__.py | 2 +- bypy/macos/__main__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/bypy/linux/__main__.py b/bypy/linux/__main__.py index 3dca0c048..704163bba 100644 --- a/bypy/linux/__main__.py +++ b/bypy/linux/__main__.py @@ -29,7 +29,7 @@ def binary_includes(): return tuple(map(get_dll_path, ( 'expat', 'sqlite3', 'ffi', 'z', 'lzma', 'png16', 'lcms2', 'crypt', - 'iconv', 'pcre', 'graphite2', 'glib-2.0', 'freetype', 'rsync', + 'iconv', 'pcre', 'graphite2', 'glib-2.0', 'freetype', 'xxhash', 'harfbuzz', 'xkbcommon', 'xkbcommon-x11', # fontconfig is not bundled because in typical brain dead Linux # distro fashion, different distros use different default config diff --git a/bypy/macos/__main__.py b/bypy/macos/__main__.py index 0fc7f1e42..99766070d 100644 --- a/bypy/macos/__main__.py +++ b/bypy/macos/__main__.py @@ -294,7 +294,7 @@ def add_misc_libraries(self): 'lcms2.2', 'crypto.1.1', 'ssl.1.1', - 'rsync.2', + 'xxhash.0', ): print('\nAdding', x) x = f'lib{x}.dylib'