diff --git a/extern/vorbis/ogg/ogg.h b/extern/vorbis/ogg/ogg.h index fdcb995f66..60178dfc6a 100644 --- a/extern/vorbis/ogg/ogg.h +++ b/extern/vorbis/ogg/ogg.h @@ -21,7 +21,7 @@ extern "C" { #endif -#include +#include <../extern/vorbis/ogg/os_types.h> typedef struct { long endbyte; diff --git a/extern/vorbis/theora/theora.h b/extern/vorbis/theora/theora.h index 503221453d..18208d1033 100644 --- a/extern/vorbis/theora/theora.h +++ b/extern/vorbis/theora/theora.h @@ -24,9 +24,9 @@ extern "C" #endif /* __cplusplus */ #ifndef LIBOGG2 -#include +#include <../extern/vorbis/ogg/ogg.h> #else -#include +#include <../extern/vorbis/ogg2/ogg.h> /* This is temporary until libogg2 is more complete */ ogg_buffer_state *ogg_buffer_create(void); #endif diff --git a/extern/vorbis/vorbis/codec.h b/extern/vorbis/vorbis/codec.h index fb4faeddfc..8928cb4756 100644 --- a/extern/vorbis/vorbis/codec.h +++ b/extern/vorbis/vorbis/codec.h @@ -23,7 +23,7 @@ extern "C" { #endif /* __cplusplus */ -#include +#include <../extern/vorbis/ogg/ogg.h> typedef struct vorbis_info{ int version; diff --git a/src/RageSoundReader_Vorbisfile.cpp b/src/RageSoundReader_Vorbisfile.cpp index 6bded614bd..3f040f4e31 100644 --- a/src/RageSoundReader_Vorbisfile.cpp +++ b/src/RageSoundReader_Vorbisfile.cpp @@ -7,7 +7,7 @@ #if defined(INTEGER_VORBIS) #include #else -#include +#include <../extern/vorbis/vorbis/vorbisfile.h> #endif #if defined(_MSC_VER) diff --git a/src/arch/MovieTexture/MovieTexture_Theora.cpp b/src/arch/MovieTexture/MovieTexture_Theora.cpp index a952b5f0fa..2a3c661b76 100644 --- a/src/arch/MovieTexture/MovieTexture_Theora.cpp +++ b/src/arch/MovieTexture/MovieTexture_Theora.cpp @@ -23,7 +23,7 @@ namespace avcodec // #define HAVE_THEORAEXP #if !defined(HAVE_THEORAEXP) -#include +#include <../extern/vorbis/theora/theora.h> #if defined(_MSC_VER) #pragma comment(lib, OGG_LIB_DIR "ogg_static.lib")