glamor: fix missing include of dix-config.h
This header needs to be included first, otherwise things can easily get really messed up. The current code only works by accident, because some other header already including it early enough - but a subtle change in include order can easy break it. Thus, always make sure the header is really included first. Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
parent
f763f0ec44
commit
8d95320217
|
@ -25,6 +25,7 @@
|
|||
* Zhigang Gong <zhigang.gong@gmail.com>
|
||||
*
|
||||
*/
|
||||
#include <dix-config.h>
|
||||
|
||||
#include "glamor_priv.h"
|
||||
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
* original author is Chris Wilson at sna.
|
||||
*
|
||||
*/
|
||||
#include <dix-config.h>
|
||||
|
||||
#include "glamor_priv.h"
|
||||
#include "mipict.h"
|
||||
|
|
|
@ -26,8 +26,7 @@
|
|||
* Zhigang Gong <zhigang.gong@linux.intel.com>
|
||||
*
|
||||
*/
|
||||
|
||||
#include "dix-config.h"
|
||||
#include <dix-config.h>
|
||||
|
||||
#define GLAMOR_FOR_XORG
|
||||
#include <unistd.h>
|
||||
|
|
|
@ -26,8 +26,7 @@
|
|||
* Authors:
|
||||
* Zhigang Gong <zhigang.gong@gmail.com>
|
||||
*/
|
||||
|
||||
#include "dix-config.h"
|
||||
#include <dix-config.h>
|
||||
|
||||
#include <xf86.h>
|
||||
#define GLAMOR_FOR_XORG
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
*
|
||||
* Gradient acceleration implementation
|
||||
*/
|
||||
#include <dix-config.h>
|
||||
|
||||
#include "glamor_priv.h"
|
||||
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THIS SOFTWARE.
|
||||
*/
|
||||
#include <dix-config.h>
|
||||
|
||||
#include "glamor_priv.h"
|
||||
#include "glamor_transfer.h"
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
* Zhigang Gong <zhigang.gong@linux.intel.com>
|
||||
*
|
||||
*/
|
||||
#include <dix-config.h>
|
||||
|
||||
#include <stdlib.h>
|
||||
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THIS SOFTWARE.
|
||||
*/
|
||||
#include <dix-config.h>
|
||||
|
||||
#include "glamor_priv.h"
|
||||
#include "glamor_transform.h"
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THIS SOFTWARE.
|
||||
*/
|
||||
#include <dix-config.h>
|
||||
|
||||
#include "glamor_priv.h"
|
||||
#include "glamor_program.h"
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THIS SOFTWARE.
|
||||
*/
|
||||
#include <dix-config.h>
|
||||
|
||||
#include "glamor_priv.h"
|
||||
#include "glamor_transform.h"
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
#include <dix-config.h>
|
||||
|
||||
#include "glamor_priv.h"
|
||||
#include "misyncshm.h"
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THIS SOFTWARE.
|
||||
*/
|
||||
#include <dix-config.h>
|
||||
|
||||
#include "glamor_priv.h"
|
||||
#include "glamor_transform.h"
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
*
|
||||
* Trapezoid acceleration implementation
|
||||
*/
|
||||
#include <dix-config.h>
|
||||
|
||||
#include "glamor_priv.h"
|
||||
|
||||
|
|
|
@ -19,6 +19,7 @@
|
|||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
||||
* OF THIS SOFTWARE.
|
||||
*/
|
||||
#include <dix-config.h>
|
||||
|
||||
#include "glamor_priv.h"
|
||||
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
*
|
||||
* Helpers for managing streamed vertex buffers used in glamor.
|
||||
*/
|
||||
#include <dix-config.h>
|
||||
|
||||
#include "glamor_priv.h"
|
||||
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
||||
* PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
#include <dix-config.h>
|
||||
|
||||
#include "glamor_priv.h"
|
||||
|
||||
|
|
Loading…
Reference in New Issue