diff options
| author | Otavio Salvador <otavio@ossystems.com.br> | 2016-09-01 15:26:17 -0300 |
|---|---|---|
| committer | Martin Jansa <Martin.Jansa@gmail.com> | 2016-09-11 09:11:21 +0200 |
| commit | c0e0c7797065d2130f8de867fbf7501250d2b131 (patch) | |
| tree | 20cc7304800b4bd6c22c3c910aa37c1db4c48b92 /meta-oe/recipes-benchmark/glmark2/files | |
| parent | ce01b0a80158d9c7e2e94c253e89d60a17979712 (diff) | |
| download | meta-openembedded-c0e0c7797065d2130f8de867fbf7501250d2b131.tar.gz | |
glmark2: Fix build error due a missing space before a macro
This fixes following error:
../src/native-state-x11.cpp:63:33: error: invalid suffix on literal; C++11 requires a space between literal and string macro [-Werror=literal-suffix]
static const char *win_name("glmark2 "GLMARK_VERSION);
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-benchmark/glmark2/files')
| -rw-r--r-- | meta-oe/recipes-benchmark/glmark2/files/Fix-build-error-due-missing-space-before-macro.patch | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/meta-oe/recipes-benchmark/glmark2/files/Fix-build-error-due-missing-space-before-macro.patch b/meta-oe/recipes-benchmark/glmark2/files/Fix-build-error-due-missing-space-before-macro.patch new file mode 100644 index 0000000000..00eb2ed733 --- /dev/null +++ b/meta-oe/recipes-benchmark/glmark2/files/Fix-build-error-due-missing-space-before-macro.patch | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | From 3fb9b6aeed2e2758239e59ba9ba1ca98535fe510 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Otavio Salvador <otavio@ossystems.com.br> | ||
| 3 | Date: Fri, 19 Aug 2016 15:08:44 +0000 | ||
| 4 | Subject: [PATCH] Fix build error due missing space before macro | ||
| 5 | Organization: O.S. Systems Software LTDA. | ||
| 6 | |||
| 7 | Signed-off-by: Otavio Salvador <otavio@ossystems.com.br> | ||
| 8 | --- | ||
| 9 | src/native-state-x11.cpp | 2 +- | ||
| 10 | 1 file changed, 1 insertion(+), 1 deletion(-) | ||
| 11 | |||
| 12 | diff --git a/src/native-state-x11.cpp b/src/native-state-x11.cpp | ||
| 13 | index 3b66b77..3c1703b 100644 | ||
| 14 | --- a/src/native-state-x11.cpp | ||
| 15 | +++ b/src/native-state-x11.cpp | ||
| 16 | @@ -60,7 +60,7 @@ NativeStateX11::display() | ||
| 17 | bool | ||
| 18 | NativeStateX11::create_window(WindowProperties const& properties) | ||
| 19 | { | ||
| 20 | - static const char *win_name("glmark2 "GLMARK_VERSION); | ||
| 21 | + static const char *win_name("glmark2 " GLMARK_VERSION); | ||
| 22 | |||
| 23 | if (!xdpy_) { | ||
| 24 | Log::error("Error: X11 Display has not been initialized!\n"); | ||
| 25 | -- | ||
| 26 | 2.1.4 | ||
| 27 | |||
