Skip to content

Commit

Permalink
configure: --disable-binaries should be off by default
Browse files Browse the repository at this point in the history
  • Loading branch information
tmatth committed Nov 3, 2017
1 parent dd8e04f commit 83f96c9
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -167,13 +167,11 @@ AC_ARG_ENABLE(float-api, [ --disable-float-api Disable the floating-point A
fi])

AC_ARG_ENABLE(binaries, [ --disable-binaries Do not build the encoder and decoder programs, only the library])
if test "$enableval" != no; then
AS_IF([test "x$enable_binaries" != "xno"], [
PKG_CHECK_MODULES([OGG], [ogg],
AM_CONDITIONAL([BUILD_BINARIES], true),
AM_CONDITIONAL([BUILD_BINARIES], false))
else
AM_CONDITIONAL([BUILD_BINARIES], false)
fi
AM_CONDITIONAL([BUILD_BINARIES], false))],
[AM_CONDITIONAL([BUILD_BINARIES], false)])

AC_ARG_ENABLE(vbr, [ --disable-vbr Disable VBR and VAD from the codec],
[if test "$enableval" = no; then
Expand Down

0 comments on commit 83f96c9

Please sign in to comment.