intel: don't forget to include config.h in bufmgr code.

Thanks to airlied for catching this.
main
Eric Anholt 2008-09-10 13:54:34 -07:00
parent f9d98beefc
commit 368b392e6d
3 changed files with 12 additions and 0 deletions

View File

@ -25,6 +25,10 @@
* *
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <string.h> #include <string.h>
#include <stdlib.h> #include <stdlib.h>
#include <stdint.h> #include <stdint.h>

View File

@ -34,6 +34,10 @@
* the bugs in the old texture manager. * the bugs in the old texture manager.
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <assert.h> #include <assert.h>

View File

@ -34,6 +34,10 @@
* Dave Airlie <airlied@linux.ie> * Dave Airlie <airlied@linux.ie>
*/ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <xf86drm.h> #include <xf86drm.h>
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>