Mercurial > SDL_sound_CoreAudio
changeset 162:3ccce5bb41c0
Changed the header to look for regarding FLAC support from FLAC/all.h to
FLAC/stream_decoder.h ...
author | Ryan C. Gordon <icculus@icculus.org> |
---|---|
date | Mon, 19 Nov 2001 16:35:12 +0000 |
parents | 0f958979b1dd |
children | b6d6f994e970 |
files | configure.in |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/configure.in Fri Nov 09 23:57:23 2001 +0000 +++ b/configure.in Mon Nov 19 16:35:12 2001 +0000 @@ -148,7 +148,7 @@ [ --enable-flac enable FLAC decoding via libFLAC [default=yes]], , enable_flac=yes) if test x$enable_flac = xyes; then - AC_CHECK_HEADER(FLAC/all.h, have_flac_hdr=yes) + AC_CHECK_HEADER(FLAC/stream_decoder.h, have_flac_hdr=yes) AC_CHECK_LIB(FLAC, FLAC__stream_decoder_new, have_flac_lib=yes) if test x$have_flac_hdr = xyes -a x$have_flac_lib = xyes; then LIBS="$LIBS -lFLAC"