Skip to content

Commit

Permalink
configure: add warning if Ogg is missing
Browse files Browse the repository at this point in the history
  • Loading branch information
tmatth committed Nov 3, 2017
1 parent 83f96c9 commit 243470f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,8 @@ AC_ARG_ENABLE(binaries, [ --disable-binaries Do not build the encoder and dec
AS_IF([test "x$enable_binaries" != "xno"], [
PKG_CHECK_MODULES([OGG], [ogg],
AM_CONDITIONAL([BUILD_BINARIES], true),
AM_CONDITIONAL([BUILD_BINARIES], false))],
[AC_MSG_WARN([Ogg not found, not building example programs])
AM_CONDITIONAL([BUILD_BINARIES], false)])],
[AM_CONDITIONAL([BUILD_BINARIES], false)])

AC_ARG_ENABLE(vbr, [ --disable-vbr Disable VBR and VAD from the codec],
Expand Down

0 comments on commit 243470f

Please sign in to comment.