summaryrefslogtreecommitdiff
path: root/va/glx
diff options
context:
space:
mode:
authorGwenole Beauchesne <gbeauchesne@splitted-desktop.com>2010-10-29 10:47:23 +0200
committerAustin Yuan <shengquan.yuan@gmail.com>2010-12-21 11:30:49 +0800
commit8170d0bf15e6552cfff524759fc254c6534610cf (patch)
tree548a99cf1479010234cbb4d61357986448740f3d /va/glx
parent68c5f603d868707488184146801b0d87782f0161 (diff)
downloadlibva-8170d0bf15e6552cfff524759fc254c6534610cf.tar.gz
Add sysdeps.h for system-dependent definitions. e.g. Android.
Diffstat (limited to 'va/glx')
-rw-r--r--va/glx/va_glx_impl.c2
-rw-r--r--va/glx/va_glx_private.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/va/glx/va_glx_impl.c b/va/glx/va_glx_impl.c
index f5bbe91..9d38930 100644
--- a/va/glx/va_glx_impl.c
+++ b/va/glx/va_glx_impl.c
@@ -36,7 +36,7 @@ static void va_glx_error_message(const char *format, ...)
{
va_list args;
va_start(args, format);
- fprintf(stderr, "[%s] ", PACKAGE_NAME);
+ fprintf(stderr, "libva-glx error: ");
vfprintf(stderr, format, args);
va_end(args);
}
diff --git a/va/glx/va_glx_private.h b/va/glx/va_glx_private.h
index eb1185c..e86efb6 100644
--- a/va/glx/va_glx_private.h
+++ b/va/glx/va_glx_private.h
@@ -25,7 +25,7 @@
#ifndef VA_GLX_PRIVATE_H
#define VA_GLX_PRIVATE_H
-#include "config.h"
+#include "sysdeps.h"
#include "va.h"
#include "va_backend.h"
#include "va_x11.h"