diff options
author | Aaron Watry <[email protected]> | 2012-06-12 20:16:37 -0500 |
---|---|---|
committer | Brian Paul <[email protected]> | 2012-06-14 08:14:59 -0600 |
commit | fc3bac8a407dc2a2804236e1e2b813a3991fa84f (patch) | |
tree | d65c3ed79638a7d9485a64c1afb9d9131b7f35da /src/gallium/auxiliary/rbug/rbug.h | |
parent | 93a42d131409ef17083e2666895ea9501db53e33 (diff) |
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 <[email protected]>
Diffstat (limited to 'src/gallium/auxiliary/rbug/rbug.h')
-rw-r--r-- | src/gallium/auxiliary/rbug/rbug.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/gallium/auxiliary/rbug/rbug.h b/src/gallium/auxiliary/rbug/rbug.h index 259bfc6c79c..6b03ddebc87 100644 --- a/src/gallium/auxiliary/rbug/rbug.h +++ b/src/gallium/auxiliary/rbug/rbug.h @@ -26,8 +26,8 @@ * Include all for users the remote debugger protocol code. */ -#include "rbug/rbug_core.h" -#include "rbug/rbug_shader.h" -#include "rbug/rbug_context.h" -#include "rbug/rbug_texture.h" -#include "rbug/rbug_connection.h" +#include "rbug_core.h" +#include "rbug_shader.h" +#include "rbug_context.h" +#include "rbug_texture.h" +#include "rbug_connection.h" |