summaryrefslogtreecommitdiff
path: root/formats
diff options
context:
space:
mode:
authorAlexander Traud <pabstraud@compuserve.com>2018-03-17 16:49:11 +0100
committerAlexander Traud <pabstraud@compuserve.com>2018-03-17 16:49:11 +0100
commite61b50b67addc38498e607e451926071a8486018 (patch)
tree5e1e184bc7c69fff8f665366c5326a7577a05be2 /formats
parentd5bfba60d2c609852da2f89677e878567d133674 (diff)
BuildSystem: Check for header file of OGG.
Asterisk uses various symbols of the shared library libogg within the module format_ogg_vorbis. However, the source code of that module did not include the header file of libogg explicitly but implicitly. Because that header was not included before Asterisk 14, the script ./configure was told not to check for it. Anyway, even Asterisk 13 LTS uses symbols of libogg. Therefore, that header should be included explicitly. Therefore, ./configure should check for that header. Change-Id: I98c50d56311b68880d1084fcc62c35ab2f8692db
Diffstat (limited to 'formats')
-rw-r--r--formats/format_ogg_vorbis.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/formats/format_ogg_vorbis.c b/formats/format_ogg_vorbis.c
index be5bb2bf9..ba86842f7 100644
--- a/formats/format_ogg_vorbis.c
+++ b/formats/format_ogg_vorbis.c
@@ -33,6 +33,7 @@
#include "asterisk.h"
+#include <ogg/ogg.h>
#include <vorbis/codec.h>
#include <vorbis/vorbisenc.h>
#include <vorbis/vorbisfile.h>