libwebp now comes with libsharp

This commit is contained in:
Kovid Goyal 2023-09-17 08:10:18 +05:30
parent a766370f4e
commit f37fc83754
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ def binary_includes():
] + list(map( ] + list(map(
get_dll_path, get_dll_path,
('usb-1.0 mtp expat sqlite3 ffi z lzma openjp2 poppler dbus-1 iconv xml2 xslt jpeg png16' ('usb-1.0 mtp expat sqlite3 ffi z lzma openjp2 poppler dbus-1 iconv xml2 xslt jpeg png16'
' webp webpmux webpdemux exslt ncursesw readline chm hunspell-1.7 hyphen' ' webp webpmux webpdemux sharpyuv exslt ncursesw readline chm hunspell-1.7 hyphen'
' icudata icui18n icuuc icuio stemmer gcrypt gpg-error uchardet graphite2' ' icudata icui18n icuuc icuio stemmer gcrypt gpg-error uchardet graphite2'
' brotlicommon brotlidec brotlienc zstd podofo' ' brotlicommon brotlidec brotlienc zstd podofo'
' gobject-2.0 glib-2.0 gthread-2.0 gmodule-2.0 gio-2.0 dbus-glib-1').split() ' gobject-2.0 glib-2.0 gthread-2.0 gmodule-2.0 gio-2.0 dbus-glib-1').split()

View File

@ -489,7 +489,7 @@ class Freeze:
@flush @flush
def add_imaging_libs(self): def add_imaging_libs(self):
print('\nAdding libjpeg, libpng, libwebp, optipng and mozjpeg') print('\nAdding libjpeg, libpng, libwebp, optipng and mozjpeg')
for x in ('jpeg.8', 'png16.16', 'webp.7', 'webpmux.3', 'webpdemux.2'): for x in ('jpeg.8', 'png16.16', 'webp.7', 'webpmux.3', 'webpdemux.2', 'sharpyuv.0'):
self.install_dylib(join(PREFIX, 'lib', 'lib%s.dylib' % x)) self.install_dylib(join(PREFIX, 'lib', 'lib%s.dylib' % x))
for x in 'optipng', 'JxrDecApp', 'cwebp': for x in 'optipng', 'JxrDecApp', 'cwebp':
self.install_dylib(join(PREFIX, 'bin', x), set_id=False, dest=self.helpers_dir) self.install_dylib(join(PREFIX, 'bin', x), set_id=False, dest=self.helpers_dir)