Skip to content

Commit

Permalink
meson: don't require font provider for libass
Browse files Browse the repository at this point in the history
  • Loading branch information
odrling committed Aug 8, 2024
1 parent 510ea70 commit 5102cda
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ endif
deps = []
deps += dependency('libavformat', fallback: ['ffmpeg', 'libavformat_dep'])
deps += dependency('libavutil', fallback: ['ffmpeg', 'libavutil_dep'])
deps += dependency('libass', fallback: 'libass')
deps += dependency(
'libass',
fallback: 'libass',
default_options: ['require-system-font-provider=false'],
)

deps += dependency(
'ffmpegaacsucks',
Expand Down

0 comments on commit 5102cda

Please sign in to comment.