modules/gst: Make modules/gst a real module

modules/gst is moved from the pinoscore library to a separate loadable
module.
For now pinos will always try to load "module-gst".
This commit is contained in:
Linus Svensson 2016-08-29 13:14:26 +02:00 committed by Wim Taymans
parent ba45aad1a2
commit 1c7fafd03e
4 changed files with 84 additions and 11 deletions

View file

@ -249,6 +249,17 @@ PKG_CHECK_MODULES(ALSA, alsa >= 0.9.1, dummy=yes,
AC_SUBST(ALSA_CFLAGS)
AC_SUBST(ALSA_LIBS)
###################################
# Modules #
###################################
#### module-gst (Gstreamer module) ####
AC_ARG_ENABLE([module-gst],
AS_HELP_STRING([--disable-module-gst],[Disable building of GStreamer module]))
AM_CONDITIONAL([BUILD_MODULE_GST], [test "x$enable_module_gst" != "xno"])
AS_IF([test "x$enable_module_gst" != "xno"], ENABLE_MODULE_GST=yes, ENABLE_MODULE_GST=no)
#### Build and Install man pages ####
AC_ARG_ENABLE([manpages],
@ -279,5 +290,8 @@ Configuration
Moduledir : ${moduledir}
Compiler : ${CC}
Modules
module-gst : ${ENABLE_MODULE_GST}
pinos configured. Type 'make' to build.
"