mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 09:10:36 +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 ######################################################################
|
||||
|
||||
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
|
||||
yes) BUILD_PLUGINS=yes ;;
|
||||
no) BUILD_PLUGINS=no ;;
|
||||
yes) BUILD_PLUGINS=no ;;
|
||||
no) BUILD_PLUGINS=yes ;;
|
||||
*) AC_MSG_ERROR(bad value ${enableval} for --disable-plugins) ;;
|
||||
esac],
|
||||
[BUILD_PLUGINS=yes])
|
||||
[BUILD_PLUGINS=no])
|
||||
AM_CONDITIONAL(BUILD_PLUGINS, test $BUILD_PLUGINS = "yes")
|
||||
|
||||
AC_ARG_ENABLE(libmmx,
|
||||
|
|
Loading…
Reference in a new issue