mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-12 02:15:31 +00:00
no plugins builds by default
Original commit message from CVS: no plugins builds by default
This commit is contained in:
parent
6c538d527b
commit
b9f6bb9c0e
1 changed files with 4 additions and 4 deletions
|
@ -681,13 +681,13 @@ dnl ######################################################################
|
||||||
dnl # Check command line parameters, and set shell variables accordingly #
|
dnl # Check command line parameters, and set shell variables accordingly #
|
||||||
dnl ######################################################################
|
dnl ######################################################################
|
||||||
|
|
||||||
AC_ARG_ENABLE(plugins, AC_HELP_STRING([--enable-plugins],[enable plugin building]),
|
AC_ARG_ENABLE(plugins, AC_HELP_STRING([--disable-plugins],[enable plugin building]),
|
||||||
[case "${enableval}" in
|
[case "${enableval}" in
|
||||||
yes) BUILD_PLUGINS=yes ;;
|
yes) BUILD_PLUGINS=no ;;
|
||||||
no) BUILD_PLUGINS=no ;;
|
no) BUILD_PLUGINS=yes ;;
|
||||||
*) AC_MSG_ERROR(bad value ${enableval} for --disable-plugins) ;;
|
*) AC_MSG_ERROR(bad value ${enableval} for --disable-plugins) ;;
|
||||||
esac],
|
esac],
|
||||||
[BUILD_PLUGINS=yes])
|
[BUILD_PLUGINS=no])
|
||||||
AM_CONDITIONAL(BUILD_PLUGINS, test $BUILD_PLUGINS = "yes")
|
AM_CONDITIONAL(BUILD_PLUGINS, test $BUILD_PLUGINS = "yes")
|
||||||
|
|
||||||
AC_ARG_ENABLE(libmmx,
|
AC_ARG_ENABLE(libmmx,
|
||||||
|
|
Loading…
Reference in a new issue