Skip to content

Commit

Permalink
fix: update webp dependency constraint
Browse files Browse the repository at this point in the history
Signed-off-by: Rui Chen <[email protected]>
  • Loading branch information
chenrui333 authored and aruiz committed Sep 22, 2023
1 parent f725313 commit 834657c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ if gdk_pb_moddir == ''
gdk_pb_moddir = gdkpb.get_variable(pkgconfig: 'gdk_pixbuf_moduledir', pkgconfig_define: ['prefix', get_option('prefix')])
endif

webp = dependency('libwebp', version: '>1.3.2')
webpdemux = dependency('libwebpdemux', version: '>1.3.2')
webpmux = dependency('libwebpmux', version: '>1.3.2')
webp = dependency('libwebp', version: '>=1.3.2')
webpdemux = dependency('libwebpdemux', version: '>=1.3.2')
webpmux = dependency('libwebpmux', version: '>=1.3.2')

pbl_webp = shared_module('pixbufloader-webp',
sources: ['io-webp.c', 'io-webp-anim.c', 'io-webp-anim-iter.c'],
Expand All @@ -30,4 +30,4 @@ configure_file(input: 'webp-pixbuf.thumbnailer.in',
warning('If you install this loader locally, make sure you rebuild the pixbuf loader cache')
warning('To rebuild the cache run: `pkg-config gdk-pixbuf-2.0 --variable=gdk_pixbuf_query_loaders` --update-cache')

subdir('tests')
subdir('tests')

0 comments on commit 834657c

Please sign in to comment.