mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 19:21:06 +00:00
lc3: fix pkg-config file lookup
There's a mismatch between the pkg-config file ('lc3') and the subproject/wrap which meant an installed liblc3 wasn't picked up. Fixes #2883 Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/5151>
This commit is contained in:
parent
171eefa06b
commit
1233b8a027
2 changed files with 3 additions and 1 deletions
|
@ -4,7 +4,7 @@ lc3_sources = [
|
||||||
'gstlc3enc.c',
|
'gstlc3enc.c',
|
||||||
]
|
]
|
||||||
|
|
||||||
lc3_dep = dependency('liblc3', required:get_option ('lc3'))
|
lc3_dep = dependency('lc3', required:get_option ('lc3'))
|
||||||
|
|
||||||
if lc3_dep.found()
|
if lc3_dep.found()
|
||||||
gstlc3 = library('gstlc3',
|
gstlc3 = library('gstlc3',
|
||||||
|
|
|
@ -4,3 +4,5 @@ url=https://github.com/google/liblc3.git
|
||||||
depth=1
|
depth=1
|
||||||
revision=v1.0.3
|
revision=v1.0.3
|
||||||
|
|
||||||
|
[provide]
|
||||||
|
lc3 = liblc3_dep
|
||||||
|
|
Loading…
Reference in a new issue