diff options
author | Max Kellermann <max@duempel.org> | 2016-05-03 23:40:21 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2016-05-03 23:40:21 +0200 |
commit | b27a41812ffda9cf88c2ce40ef9664019ede7fcb (patch) | |
tree | 106e34ff912a95297d2cff59f804b3ddc34f2cfe /configure.ac | |
parent | 6c933d2b775536313eb98f7aaa422eaba83d6d10 (diff) |
configure.ac: enable HAVE_XIPH if Vorbis/FLAC encoder is enabled
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index e50163cce..6f1b8edc2 100644 --- a/configure.ac +++ b/configure.ac @@ -1257,12 +1257,12 @@ dnl Option groups dnl --------------------------------------------------------------------------- have_ogg=no -if test x$enable_vorbis = xyes || test x$enable_tremor = xyes || test x$enable_opus = xyes; then +if test x$enable_vorbis = xyes || test x$enable_tremor = xyes || test x$enable_opus = xyes || test x$enable_vorbis_encoder = xyes; then have_ogg=yes fi have_xiph=no -if test x$enable_ogg = xyes || test x$enable_flac = xyes; then +if test x$enable_ogg = xyes || test x$enable_flac = xyes || test x$enable_flac_encoder = xyes; then have_xiph=yes fi |