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