From fc3bac8a407dc2a2804236e1e2b813a3991fa84f Mon Sep 17 00:00:00 2001 From: Aaron Watry Date: Tue, 12 Jun 2012 20:16:37 -0500 Subject: rbug: fix make process on Linux Mint 13 x64. Previously, rbug_*.c would fail to compile with incomplete prototype errors when make was run from the command line on my machine. My IDE always built fine, and still does after this patch (Netbeans 7.1.2). Most of the includes from files in gallium/auxiliary/rbug/* were assuming an rbug/ subdirectory, while the headers are actually in the same directory as the .c files. The build error was also previously a problem for me on Ubuntu 11.10 and Mint 12. Fixes build for the following configuration: ./autogen.sh --enable-debug --enable-texture-float --with-gallium-drivers=r600 --with-dri-drivers=radeon --enable-r600-llvm-compiler Signed-off-by: Brian Paul --- src/gallium/auxiliary/rbug/rbug_texture.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/gallium/auxiliary/rbug/rbug_texture.h') diff --git a/src/gallium/auxiliary/rbug/rbug_texture.h b/src/gallium/auxiliary/rbug/rbug_texture.h index fbb247e1d4f..59c914053ad 100644 --- a/src/gallium/auxiliary/rbug/rbug_texture.h +++ b/src/gallium/auxiliary/rbug/rbug_texture.h @@ -38,8 +38,8 @@ #ifndef _RBUG_PROTO_TEXTURE_H_ #define _RBUG_PROTO_TEXTURE_H_ -#include "rbug/rbug_proto.h" -#include "rbug/rbug_core.h" +#include "rbug_proto.h" +#include "rbug_core.h" struct rbug_proto_texture_list { -- cgit v1.2.3