diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2018-09-22 19:49:13 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2018-09-22 19:49:13 +0100 |
commit | 287c419784da7384cbcca0bb149df9f71562bbb8 (patch) | |
tree | 2fe260179e6900404d6557a165339b625de52b10 | |
parent | 05917e127dcfd64265ed1da84c54de9c9ea44ac5 (diff) | |
download | gstreamer-plugins-bad-287c419784da7384cbcca0bb149df9f71562bbb8.tar.gz |
pkgconfig: generate sctp lib .pc file also with Meson build
and fix up autotools definition now that it's not conditional
any more.
-rw-r--r-- | pkgconfig/Makefile.am | 5 | ||||
-rw-r--r-- | pkgconfig/meson.build | 1 |
2 files changed, 3 insertions, 3 deletions
diff --git a/pkgconfig/Makefile.am b/pkgconfig/Makefile.am index 63a14c2d6..44079a77c 100644 --- a/pkgconfig/Makefile.am +++ b/pkgconfig/Makefile.am @@ -6,6 +6,7 @@ pcverfiles = \ gstreamer-insertbin-@GST_API_VERSION@.pc \ gstreamer-mpegts-@GST_API_VERSION@.pc \ gstreamer-player-@GST_API_VERSION@.pc \ + gstreamer-sctp-@GST_API_VERSION@.pc \ gstreamer-webrtc-@GST_API_VERSION@.pc \ gstreamer-bad-audio-@GST_API_VERSION@.pc \ gstreamer-bad-video-@GST_API_VERSION@.pc @@ -16,13 +17,11 @@ pcverfiles_uninstalled = \ gstreamer-insertbin-@GST_API_VERSION@-uninstalled.pc \ gstreamer-mpegts-@GST_API_VERSION@-uninstalled.pc \ gstreamer-player-@GST_API_VERSION@-uninstalled.pc \ + gstreamer-sctp-@GST_API_VERSION@-uninstalled.pc \ gstreamer-webrtc-@GST_API_VERSION@-uninstalled.pc \ gstreamer-bad-audio-@GST_API_VERSION@-uninstalled.pc \ gstreamer-bad-video-@GST_API_VERSION@-uninstalled.pc -pcverfiles += gstreamer-sctp-@GST_API_VERSION@.pc -pcverfiles_uninstalled += gstreamer-sctp-@GST_API_VERSION@-uninstalled.pc - all-local: $(pcverfiles) $(pcverfiles_uninstalled) cp_verbose = $(cp_verbose_$(V)) diff --git a/pkgconfig/meson.build b/pkgconfig/meson.build index 271f327f3..a3d426092 100644 --- a/pkgconfig/meson.build +++ b/pkgconfig/meson.build @@ -30,6 +30,7 @@ pkg_libs = [ 'mpegts', 'player', 'plugins-bad', + 'sctp', 'webrtc', ] |