correctly detect ogg/vorbis for win32
This commit is contained in:
parent
c5d83c428f
commit
774b6bab11
1 changed files with 2 additions and 2 deletions
|
@ -147,8 +147,8 @@ OGG_CFLAGS=
|
|||
OGG_LIBS=
|
||||
if test "$OGG" != "no"; then
|
||||
OGG="yes"
|
||||
AC_CHECK_HEADERS(ogg.h,, OGG=no)
|
||||
AC_CHECK_HEADERS(vorbis.h,, OGG=no)
|
||||
AC_CHECK_HEADERS(ogg/ogg.h,, OGG=no)
|
||||
AC_CHECK_HEADERS(vorbis/vorbisfile.h,, OGG=no)
|
||||
if test "$OGG" != "no"; then
|
||||
OGG_CFLAGS="-DUSE_OGG"
|
||||
OGG_LIBS="-lvorbisfile -lvorbis -logg"
|
||||
|
|
Loading…
Reference in a new issue