Re: config.h reorg part 2: config.h includes
François Gouget wrote: [...]
Changelog:
François Gouget <fgouget(a)codeweavers.com>
* console/xterm.c, [...] windows/x11drv/clipboard.c
Fix the #include order for config.h Add #include "config.h" directives where needed Fixes the FILE_OFFSET_BITS redefinition warnings on Solaris (part 2)
There was a #include config.h missing in dlls/ddraw/mesa.c in the above patch. The attached patch fixes that. It complements part 2 (p20011031-config.diff) and must thus be applied before part 3 (p20011031-config2.diff) -- François Gouget fgouget(a)codeweavers.com Index: dlls/ddraw/mesa.c =================================================================== RCS file: /home/wine/wine/dlls/ddraw/mesa.c,v retrieving revision 1.3 diff -u -r1.3 mesa.c --- dlls/ddraw/mesa.c 2000/11/27 23:54:26 1.3 +++ dlls/ddraw/mesa.c 2001/11/01 07:51:07 @@ -3,6 +3,8 @@ This file contains all MESA common code */ +#include "config.h" + #include "windef.h" #include "wine/obj_base.h" #include "ddraw.h"
participants (1)
-
François Gouget