Skip to content

Commit

Permalink
Newer versions of Speex moved to a new include directory.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Apr 17, 2008
1 parent 4e661ea commit 1b8575a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion configure.in
Expand Up @@ -276,7 +276,7 @@ AC_ARG_ENABLE(speex,
if test x$enable_speex = xyes; then
AC_CHECK_HEADER(ogg/ogg.h, have_ogg_hdr=yes)
AC_CHECK_LIB(ogg, ogg_sync_init, have_ogg_lib=yes)
AC_CHECK_HEADER(speex.h, have_speex_hdr=yes)
AC_CHECK_HEADER(speex/speex.h, have_speex_hdr=yes)
AC_CHECK_LIB(speex, speex_bits_init, have_speex_lib=yes)
if test "x$have_ogg_hdr" = "xyes" -a "x$have_ogg_lib" = "xyes" -a "x$have_speex_hdr" = "xyes" -a "x$have_speex_lib" = "xyes"; then
LIBS="$LIBS -logg -lspeex"
Expand Down
4 changes: 2 additions & 2 deletions decoders/speex.c
Expand Up @@ -51,8 +51,8 @@
#include <assert.h>

#include <ogg/ogg.h>
#include <speex.h>
#include <speex_header.h>
#include <speex/speex.h>
#include <speex/speex_header.h>

#include "SDL_sound.h"

Expand Down

0 comments on commit 1b8575a

Please sign in to comment.