Commit bf4a1939 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

dash: include <config.h> in all cpp files

On Win32, time_t can either be long or long long depending on #define's.
This caused linking failures.
parent 208aa807
...@@ -25,10 +25,6 @@ ...@@ -25,10 +25,6 @@
#ifndef HTTPCONNECTION_H_ #ifndef HTTPCONNECTION_H_
#define HTTPCONNECTION_H_ #define HTTPCONNECTION_H_
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <vlc_common.h> #include <vlc_common.h>
#include <vlc_plugin.h> #include <vlc_plugin.h>
#include <vlc_stream.h> #include <vlc_stream.h>
......
...@@ -22,6 +22,10 @@ ...@@ -22,6 +22,10 @@
* 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 "SegmentInfoCommon.h" #include "SegmentInfoCommon.h"
#include "Segment.h" #include "Segment.h"
......
...@@ -20,6 +20,9 @@ ...@@ -20,6 +20,9 @@
* 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 "SegmentInfoDefault.h" #include "SegmentInfoDefault.h"
......
...@@ -20,6 +20,9 @@ ...@@ -20,6 +20,9 @@
* 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 "SegmentTemplate.h" #include "SegmentTemplate.h"
#include "SegmentTimeline.h" #include "SegmentTimeline.h"
......
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