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

config.h MUST ALWAYS BE INCLUDED _FIRST_! Fix Windows warnings.

How many times does this have to be spelt?!
parent 9887eecc
...@@ -23,6 +23,10 @@ ...@@ -23,6 +23,10 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/ *****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdint.h> #include <stdint.h>
#include <vlc_common.h> #include <vlc_common.h>
......
...@@ -24,11 +24,13 @@ ...@@ -24,11 +24,13 @@
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*****************************************************************************/ *****************************************************************************/
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
#include <stdlib.h> #include <stdlib.h>
#include <stdint.h> #include <stdint.h>
/* This handles including config.h, because the config
is already needed in the header. */
#include "merge.h" #include "merge.h"
#ifdef CAN_COMPILE_MMXEXT #ifdef CAN_COMPILE_MMXEXT
......
...@@ -32,10 +32,6 @@ ...@@ -32,10 +32,6 @@
* Merge (line blending) routines for the VLC deinterlacer. * Merge (line blending) routines for the VLC deinterlacer.
*/ */
#ifdef HAVE_CONFIG_H
# include "config.h"
#endif
/***************************************************************************** /*****************************************************************************
* Macros * Macros
*****************************************************************************/ *****************************************************************************/
......
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