Make sure all files using config.h constants actually #include "config.h"
This commit is contained in:
parent
be0d06541a
commit
5298812be1
|
@ -4,6 +4,7 @@
|
|||
/* This file contains all X11 private and specific definitions.
|
||||
* It may also be used by all ports that reuse X11 stuff (like XF86 DGA)
|
||||
*/
|
||||
#include "config.h"
|
||||
#include "ts_xlib.h"
|
||||
#include "ts_xutil.h"
|
||||
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
/* Definition for OSS drivers : wine multimedia system */
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#if defined(HAVE_SYS_SOUNDCARD_H)
|
||||
# include <sys/soundcard.h>
|
||||
#elif defined(HAVE_MACHINE_SOUNDCARD_H)
|
||||
|
|
|
@ -12,6 +12,7 @@
|
|||
|
||||
#include <stdlib.h>
|
||||
#include <unistd.h>
|
||||
#include "config.h"
|
||||
#include "windef.h"
|
||||
#include "wine/windef16.h"
|
||||
|
||||
|
|
|
@ -1,6 +1,7 @@
|
|||
#ifndef __WINE_ELFDLL_H
|
||||
#define __WINE_ELFDLL_H
|
||||
|
||||
#include "config.h"
|
||||
#include "module.h"
|
||||
#include "windef.h"
|
||||
|
||||
|
|
|
@ -51,6 +51,8 @@
|
|||
#include <X11/Xos.h>
|
||||
#include <X11/Xatom.h>
|
||||
|
||||
#include "config.h"
|
||||
|
||||
/*
|
||||
* Lightweight debug definitions for Wine Clipboard Server.
|
||||
* The standard FIXME, ERR, WARN & TRACE classes are supported
|
||||
|
|
Loading…
Reference in New Issue