mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-31 20:48:56 +00:00
Let's just say I have a better understanding of autoconf now (I should really have read the manual first). It helps t...
Original commit message from CVS: Let's just say I have a better understanding of autoconf now (I should really have read the manual first). It helps to remember that yes != no ;)
This commit is contained in:
parent
14ae775e05
commit
528d8c273b
1 changed files with 4 additions and 4 deletions
|
@ -778,8 +778,8 @@ esac],
|
|||
AC_ARG_ENABLE(tests,
|
||||
[ --disable-tests disable building test apps],
|
||||
[case "${enableval}" in
|
||||
yes) BUILD_TESTS=no ;;
|
||||
no) BUILD_TESTS=yes ;;
|
||||
yes) BUILD_TESTS=yes ;;
|
||||
no) BUILD_TESTS=no ;;
|
||||
*) AC_MSG_ERROR(bad value ${enableval} for --disable-tests) ;;
|
||||
esac],
|
||||
[BUILD_TESTS=yes]) dnl Default value
|
||||
|
@ -787,8 +787,8 @@ esac],
|
|||
AC_ARG_ENABLE(examples,
|
||||
[ --disable-examples disable building examples],
|
||||
[case "${enableval}" in
|
||||
yes) BUILD_EXAMPLES=no ;;
|
||||
no) BUILD_EXAMPLES=yes ;;
|
||||
yes) BUILD_EXAMPLES=yes ;;
|
||||
no) BUILD_EXAMPLES=no ;;
|
||||
*) AC_MSG_ERROR(bad value ${enableval} for --disable-examples) ;;
|
||||
esac],
|
||||
[BUILD_EXAMPLES=yes]) dnl Default value
|
||||
|
|
Loading…
Reference in a new issue