summaryrefslogtreecommitdiff
path: root/recipes/soundtouch.recipe
diff options
context:
space:
mode:
authorMatthew Waters <matthew@centricular.com>2023-05-31 11:13:24 +1000
committerMatthew Waters <matthew@centricular.com>2023-06-04 13:42:51 +1000
commit1cf026d1d7852485442eb76d2402586d753f8417 (patch)
treec703e5740b54f277c44631a5b7c91b61a885e0b7 /recipes/soundtouch.recipe
parent976ca291952c026df38a49dcec945ba05b9d04db (diff)
android: remove all traces of gnustl
The relevant c++ standard library is now automaticaly added by the compiler/linker and our gross hack involving gnustl.pc/la is not longer needed. Part-of: <https://gitlab.freedesktop.org/gstreamer/cerbero/-/merge_requests/1191>
Diffstat (limited to 'recipes/soundtouch.recipe')
-rw-r--r--recipes/soundtouch.recipe3
1 files changed, 1 insertions, 2 deletions
diff --git a/recipes/soundtouch.recipe b/recipes/soundtouch.recipe
index 434ca304..ffe293f0 100644
--- a/recipes/soundtouch.recipe
+++ b/recipes/soundtouch.recipe
@@ -14,7 +14,6 @@ class Recipe(recipe.Recipe):
patches = [
'soundtouch/0008-Fix-compilation-with-clang.patch',
'soundtouch/0001-Add-minimal-meson-build-system.patch',
- 'soundtouch/0002-add-support-for-linking-with-gnustl-on-android.patch',
]
files_libs = ['libSoundTouch']
@@ -30,7 +29,7 @@ class Recipe(recipe.Recipe):
def post_install (self):
dependency_libs = []
if self.config.target_platform == Platform.ANDROID:
- dependency_libs += ['gnustl', '-lm']
+ dependency_libs += ['-lm']
lib = LibtoolLibrary('SoundTouch', None, None, None, self.config.libdir,
self.config.target_platform, deps=dependency_libs)