win32: Include config.h before anything else. Fix mpegdemux LIBADD

Because config.h defines __MSVCRT_VERSION__, which should be defined
before inclusion of any system header.

Also fixes mpegdemux Makefile.am LIBADD typo.

Fixes #606665
This commit is contained in:
2010-01-11 22:41:57 +03:00 committed by Tim-Philipp Müller
parent d02ef41d32
commit fc94c56c55
2 changed files with 4 additions and 4 deletions

View file

@ -45,12 +45,12 @@
* </refsect2>
*/
#include <string.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h>
#include "gstaacparse.h"

View file

@ -39,12 +39,12 @@
* </refsect2>
*/
#include <string.h>
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h>
#include "gstamrparse.h"