Commit 44e7ea31 authored by Nicolas Dufresne's avatar Nicolas Dufresne Committed by Olivier Crête

Add ability to build static GST plugins

Note that this only works for 1.0 plugin.

https://bugs.freedesktop.org/show_bug.cgi?id=85929
parent 3528654e
...@@ -301,6 +301,24 @@ AS_IF([test "${enable_coverage}" != "no"], [ ...@@ -301,6 +301,24 @@ AS_IF([test "${enable_coverage}" != "no"], [
]) ])
AC_SUBST(CCACHE_DISABLE) AC_SUBST(CCACHE_DISABLE)
dnl build static plugins or not
AC_MSG_CHECKING([whether to build static plugins or not])
AC_ARG_ENABLE(
static-plugins,
AC_HELP_STRING(
[--enable-static-plugins],
[build static plugins @<:@default=no@:>@]),
[AS_CASE(
[$enableval], [no], [], [yes], [],
[AC_MSG_ERROR([bad value "$enableval" for --enable-static-plugins])])],
[enable_static_plugins=no])
AC_MSG_RESULT([$enable_static_plugins])
if test "x$enable_static_plugins" = xyes; then
AC_DEFINE(GST_PLUGIN_BUILD_STATIC, 1,
[Define if static plugins should be built])
fi
AM_CONDITIONAL(GST_PLUGIN_BUILD_STATIC, test "x$enable_static_plugins" = "xyes")
case $host_os in case $host_os in
solaris*) solaris*)
LDFLAGS="$LDFLAGS -lsocket -lnls" LDFLAGS="$LDFLAGS -lsocket -lnls"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment