From: Michel Dänzer Date: Tue, 26 Feb 2008 18:48:13 +0000 (+0000) Subject: intel_winsys: Fix build failure due to DEBUG_IOCTL being undefined. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=dbf12dcdb78aa251fe0d09b49aa661481727ecf6;p=mesa.git intel_winsys: Fix build failure due to DEBUG_IOCTL being undefined. Include pipe/p_debug.h to consistently enable or disable the debugging code. --- diff --git a/src/gallium/winsys/dri/intel/intel_context.h b/src/gallium/winsys/dri/intel/intel_context.h index b01370c049c..45430984d8f 100644 --- a/src/gallium/winsys/dri/intel/intel_context.h +++ b/src/gallium/winsys/dri/intel/intel_context.h @@ -30,6 +30,9 @@ #include "drm.h" + +#include "pipe/p_debug.h" + #include "intel_screen.h" #include "i915_drm.h"