Skip to content

Commit

Permalink
Fixed ogg.h detection in configure script.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Dec 6, 2005
1 parent a134a35 commit ec27d26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion configure.in
Expand Up @@ -235,7 +235,7 @@ AC_ARG_ENABLE(ogg,
[ --enable-ogg enable OGG decoding via libvorbis [default=yes]],
, enable_ogg=yes)
if test x$enable_ogg = xyes; then
AC_CHECK_HEADER(ogg.h, have_ogg_hdr=yes)
AC_CHECK_HEADER(ogg/ogg.h, have_ogg_hdr=yes)
AC_CHECK_LIB(ogg, ogg_sync_init, have_ogg_lib=yes)
AC_CHECK_HEADER(vorbis/codec.h, have_vorbis_hdr=yes)
AC_CHECK_LIB(vorbis, vorbis_info_init, have_vorbis_lib=yes)
Expand Down

0 comments on commit ec27d26

Please sign in to comment.