Commit 1a29a30f authored by Francois Cartegnie's avatar Francois Cartegnie

demux: hls: correctly ifdef gcrypt include

parent 88f858e9
...@@ -17,10 +17,6 @@ ...@@ -17,10 +17,6 @@
* along with this program; if not, write to the Free Software Foundation, * along with this program; if not, write to the Free Software Foundation,
* Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. * Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/ *****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "HLSSegment.hpp" #include "HLSSegment.hpp"
#include <vlc_common.h> #include <vlc_common.h>
......
...@@ -20,9 +20,15 @@ ...@@ -20,9 +20,15 @@
#ifndef HLSSEGMENT_HPP #ifndef HLSSEGMENT_HPP
#define HLSSEGMENT_HPP #define HLSSEGMENT_HPP
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include "../adaptative/playlist/Segment.h" #include "../adaptative/playlist/Segment.h"
#include <vector> #include <vector>
#include <gcrypt.h> #ifdef HAVE_GCRYPT
#include <gcrypt.h>
#endif
namespace hls namespace hls
{ {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment