mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
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:
parent
ba45aad1a2
commit
1c7fafd03e
4 changed files with 84 additions and 11 deletions
14
configure.ac
14
configure.ac
|
|
@ -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.
|
||||
"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue