diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/glx/x11/XF86dri.c | 2 | ||||
-rw-r--r-- | src/glx/x11/dri_glx.c | 2 | ||||
-rw-r--r-- | src/glx/x11/glx_pbuffer.c | 4 | ||||
-rw-r--r-- | src/glx/x11/glxcmds.c | 6 | ||||
-rw-r--r-- | src/glx/x11/glxext.c | 4 | ||||
-rw-r--r-- | src/glx/x11/glxextensions.c | 4 |
6 files changed, 11 insertions, 11 deletions
diff --git a/src/glx/x11/XF86dri.c b/src/glx/x11/XF86dri.c index d0b7f72554..03fa4e57bc 100644 --- a/src/glx/x11/XF86dri.c +++ b/src/glx/x11/XF86dri.c @@ -40,7 +40,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #define NEED_REPLIES #include <X11/Xlibint.h> #include <X11/extensions/Xext.h> -#include "extutil.h" +#include <X11/extensions/extutil.h> #include "glheader.h" #include "xf86dristr.h" diff --git a/src/glx/x11/dri_glx.c b/src/glx/x11/dri_glx.c index 6ebf21d402..516ca508c5 100644 --- a/src/glx/x11/dri_glx.c +++ b/src/glx/x11/dri_glx.c @@ -38,7 +38,7 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. #include <unistd.h> #include <X11/Xlibint.h> #include <X11/extensions/Xext.h> -#include "extutil.h" +#include <X11/extensions/extutil.h> #include "glxclient.h" #include "xf86dri.h" #include "sarea.h" diff --git a/src/glx/x11/glx_pbuffer.c b/src/glx/x11/glx_pbuffer.c index 9e91fd519f..83c550559c 100644 --- a/src/glx/x11/glx_pbuffer.c +++ b/src/glx/x11/glx_pbuffer.c @@ -31,8 +31,8 @@ #include <inttypes.h> #include "glxclient.h" -#include <extutil.h> -#include <Xext.h> +#include <X11/extensions/extutil.h> +#include <X11/extensions/Xext.h> #include <assert.h> #include <string.h> #include "glapi.h" diff --git a/src/glx/x11/glxcmds.c b/src/glx/x11/glxcmds.c index 093deab3b9..6a31f24dd8 100644 --- a/src/glx/x11/glxcmds.c +++ b/src/glx/x11/glxcmds.c @@ -41,14 +41,14 @@ #include <inttypes.h> #include "glxclient.h" -#include <extutil.h> -#include <Xext.h> +#include <X11/extensions/extutil.h> +#include <X11/extensions/Xext.h> #include <assert.h> #include <string.h> #include "glapi.h" #ifdef GLX_DIRECT_RENDERING #include "indirect_init.h" -#include "xf86vmode.h" +#include <X11/extensions/xf86vmode.h> #include "xf86dri.h" #endif #include "glxextensions.h" diff --git a/src/glx/x11/glxext.c b/src/glx/x11/glxext.c index 1fd2099a7f..eb6e870e98 100644 --- a/src/glx/x11/glxext.c +++ b/src/glx/x11/glxext.c @@ -46,8 +46,8 @@ #include "glxclient.h" #include <stdio.h> -#include <Xext.h> -#include <extutil.h> +#include <X11/extensions/Xext.h> +#include <X11/extensions/extutil.h> #include <assert.h> #include "indirect_init.h" #include "glapi.h" diff --git a/src/glx/x11/glxextensions.c b/src/glx/x11/glxextensions.c index 7c5d9719a6..d2597981cf 100644 --- a/src/glx/x11/glxextensions.c +++ b/src/glx/x11/glxextensions.c @@ -29,8 +29,8 @@ */ #include "glxclient.h" -#include <extutil.h> -#include <Xext.h> +#include <X11/extensions/extutil.h> +#include <X11/extensions/Xext.h> #include <string.h> #include "glapi.h" #include "glxextensions.h" |