oggvorbis: define HAVE_OGGVORBIS when tremor is enabled
When tremor (libvorbisidec) is used, HAVE_OGGVORBIS was not defined.
This commit is contained in:
parent
3e87e4f3ab
commit
c77c61bf3f
1
NEWS
1
NEWS
|
@ -18,6 +18,7 @@ MPD 0.14.1 - not yet released
|
||||||
* decoders:
|
* decoders:
|
||||||
- mp4: support the writer/composer tag
|
- mp4: support the writer/composer tag
|
||||||
- id3: strip leading and trailing whitespace from ID3 tags
|
- id3: strip leading and trailing whitespace from ID3 tags
|
||||||
|
- oggvorbis: fix tremor support
|
||||||
* audio outputs:
|
* audio outputs:
|
||||||
- jack: allocate default port names (fixes a crash)
|
- jack: allocate default port names (fixes a crash)
|
||||||
* update:
|
* update:
|
||||||
|
|
|
@ -866,7 +866,9 @@ if test x$use_tremor = xyes; then
|
||||||
CFLAGS="$CFLAGS $TREMOR_CFLAGS"
|
CFLAGS="$CFLAGS $TREMOR_CFLAGS"
|
||||||
LIBS="$LIBS $TREMOR_LIBS"
|
LIBS="$LIBS $TREMOR_LIBS"
|
||||||
AC_CHECK_LIB(vorbisidec,ov_read,enable_oggvorbis=yes,enable_oggvorbis=no;AC_MSG_WARN([vorbisidec lib needed for ogg support with tremor -- disabling ogg support]))
|
AC_CHECK_LIB(vorbisidec,ov_read,enable_oggvorbis=yes,enable_oggvorbis=no;AC_MSG_WARN([vorbisidec lib needed for ogg support with tremor -- disabling ogg support]))
|
||||||
if test x$enable_oggvorbis = xno; then
|
if test x$enable_oggvorbis = xyes; then
|
||||||
|
AC_DEFINE(HAVE_OGGVORBIS, 1, [Define for Ogg Vorbis support]),
|
||||||
|
else
|
||||||
CFLAGS="$ac_save_CFLAGS"
|
CFLAGS="$ac_save_CFLAGS"
|
||||||
LIBS="$ac_save_LIBS"
|
LIBS="$ac_save_LIBS"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in New Issue