diff options
author | Matthew Waters <matthew@centricular.com> | 2023-05-31 11:13:24 +1000 |
---|---|---|
committer | Matthew Waters <matthew@centricular.com> | 2023-06-04 13:42:51 +1000 |
commit | 1cf026d1d7852485442eb76d2402586d753f8417 (patch) | |
tree | c703e5740b54f277c44631a5b7c91b61a885e0b7 /packages | |
parent | 976ca291952c026df38a49dcec945ba05b9d04db (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 'packages')
-rw-r--r-- | packages/base-system-1.0.package | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/base-system-1.0.package b/packages/base-system-1.0.package index 11619da7..d794a86e 100644 --- a/packages/base-system-1.0.package +++ b/packages/base-system-1.0.package @@ -21,7 +21,7 @@ class Package(custom.GStreamer, package.Package): Platform.WINDOWS: ['proxy-libintl:libs:lang', 'mingw-runtime'], Platform.DARWIN: ['proxy-libintl:libs:lang'], Platform.LINUX: [], - Platform.ANDROID: ['proxy-libintl:libs:lang', 'libiconv:libs:lang', 'gnustl'], + Platform.ANDROID: ['proxy-libintl:libs:lang', 'libiconv:libs:lang'], Platform.IOS: ['proxy-libintl:libs:lang'] } |