summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.com>2016-08-21 16:21:07 +0100
committerTim-Philipp Müller <tim@centricular.com>2016-08-21 16:21:07 +0100
commit3550fb3a6a6a3738e278589f926a479b922c8cc4 (patch)
treeecdd8526a3d8258ef6d703ca5d1d816aef693b66 /ext
parent42af2d66d8e4aa73c38be07c8460397adf21ce30 (diff)
meson: remove unused mpg123 build file
mpg123 was moved to ugly.
Diffstat (limited to 'ext')
-rw-r--r--ext/mpg123/meson.build16
1 files changed, 0 insertions, 16 deletions
diff --git a/ext/mpg123/meson.build b/ext/mpg123/meson.build
deleted file mode 100644
index d4e16c9e7..000000000
--- a/ext/mpg123/meson.build
+++ /dev/null
@@ -1,16 +0,0 @@
-mpg123_sources = [
- 'gstmpg123audiodec.c',
-]
-
-mpg123_dep = dependency('libmpg123', version : '>= 1.3', required : false)
-
-if mpg123_dep.found()
- gstmpg123 = library('gstmpg123',
- mpg123_sources,
- c_args : gst_plugins_bad_args,
- include_directories : [configinc],
- dependencies : [gstaudio_dep, mpg123_dep],
- install : true,
- install_dir : plugins_install_dir,
- )
-endif