From patchwork Thu Jul 21 12:36:35 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: alexandros.frantzis@linaro.org X-Patchwork-Id: 2969 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 4D8FD23F4D for ; Thu, 21 Jul 2011 12:43:23 +0000 (UTC) Received: from mail-qy0-f173.google.com (mail-qy0-f173.google.com [209.85.216.173]) by fiordland.canonical.com (Postfix) with ESMTP id 1BDB4A1822A for ; Thu, 21 Jul 2011 12:43:23 +0000 (UTC) Received: by mail-qy0-f173.google.com with SMTP id 10so3962504qyk.11 for ; Thu, 21 Jul 2011 05:43:22 -0700 (PDT) Received: by 10.229.68.200 with SMTP id w8mr191372qci.114.1311252202871; Thu, 21 Jul 2011 05:43:22 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.229.217.78 with SMTP id hl14cs139535qcb; Thu, 21 Jul 2011 05:43:22 -0700 (PDT) Received: by 10.213.9.4 with SMTP id j4mr209602ebj.148.1311251796768; Thu, 21 Jul 2011 05:36:36 -0700 (PDT) Received: from adelie.canonical.com (adelie.canonical.com [91.189.90.139]) by mx.google.com with ESMTP id n17si2367965wed.137.2011.07.21.05.36.36; Thu, 21 Jul 2011 05:36:36 -0700 (PDT) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) client-ip=91.189.90.139; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.139 as permitted sender) smtp.mail=bounces@canonical.com Received: from loganberry.canonical.com ([91.189.90.37]) by adelie.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1QjsUV-0000Ct-Ev for ; Thu, 21 Jul 2011 12:36:35 +0000 Received: from loganberry.canonical.com (localhost [127.0.0.1]) by loganberry.canonical.com (Postfix) with ESMTP id 5E7082E890D for ; Thu, 21 Jul 2011 12:36:35 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: glmark2 X-Launchpad-Branch: ~glmark2-dev/glmark2/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 74 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~glmark2-dev/glmark2/trunk] Rev 74: Rename include guards to values not reserved to the compiler implementation. Message-Id: <20110721123635.17019.16981.launchpad@loganberry.canonical.com> Date: Thu, 21 Jul 2011 12:36:35 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="13475"; Instance="initZopeless config overlay" X-Launchpad-Hash: dd1fb4cfda6a2623813718384366f0c7c873ddd3 ------------------------------------------------------------ revno: 74 committer: Alexandros Frantzis timestamp: Tue 2011-01-25 17:06:04 +0200 message: Rename include guards to values not reserved to the compiler implementation. modified: src/matrix.h src/mesh.h src/model.h src/oglsdl.h src/scene.h src/screen-sdl-gl.h src/screen-sdl-glesv2.h src/screen-sdl.h src/screen.h src/shader.h src/texture.h src/vector.h --- lp:glmark2 https://code.launchpad.net/~glmark2-dev/glmark2/trunk You are subscribed to branch lp:glmark2. To unsubscribe from this branch go to https://code.launchpad.net/~glmark2-dev/glmark2/trunk/+edit-subscription === modified file 'src/matrix.h' --- src/matrix.h 2011-01-25 15:00:12 +0000 +++ src/matrix.h 2011-01-25 15:06:04 +0000 @@ -19,8 +19,8 @@ * Authors: * Alexandros Frantzis (glmark2) */ -#ifndef _MATRIX_H -#define _MATRIX_H +#ifndef GLMARK2_MATRIX_H_ +#define GLMARK2_MATRIX_H_ #include "oglsdl.h" === modified file 'src/mesh.h' --- src/mesh.h 2011-01-25 15:00:12 +0000 +++ src/mesh.h 2011-01-25 15:06:04 +0000 @@ -21,8 +21,8 @@ * Ben Smith (original glmark benchmark) * Alexandros Frantzis (glmark2) */ -#ifndef _MESH_H -#define _MESH_H +#ifndef GLMARK2_MESH_H_ +#define GLMARK2_MESH_H_ #include "screen.h" #include "vector.h" === modified file 'src/model.h' --- src/model.h 2011-01-25 15:00:12 +0000 +++ src/model.h 2011-01-25 15:06:04 +0000 @@ -21,8 +21,8 @@ * Ben Smith (original glmark benchmark) * Alexandros Frantzis (glmark2) */ -#ifndef _MODEL_H -#define _MODEL_H +#ifndef GLMARK2_MODEL_H_ +#define GLMARK2_MODEL_H_ #include "mesh.h" === modified file 'src/oglsdl.h' --- src/oglsdl.h 2011-01-25 15:00:12 +0000 +++ src/oglsdl.h 2011-01-25 15:06:04 +0000 @@ -21,8 +21,8 @@ * Ben Smith (original glmark benchmark) * Alexandros Frantzis (glmark2) */ -#ifndef _OGLSDL_H -#define _OGLSDL_H +#ifndef GLMARK2_OGLSDL_H_ +#define GLMARK2_OGLSDL_H_ #include === modified file 'src/scene.h' --- src/scene.h 2011-01-25 15:00:12 +0000 +++ src/scene.h 2011-01-25 15:06:04 +0000 @@ -21,8 +21,8 @@ * Ben Smith (original glmark benchmark) * Alexandros Frantzis (glmark2) */ -#ifndef _SCENE_H -#define _SCENE_H +#ifndef GLMARK2_SCENE_H_ +#define GLMARK2_SCENE_H_ #include "oglsdl.h" === modified file 'src/screen-sdl-gl.h' --- src/screen-sdl-gl.h 2011-01-25 15:00:12 +0000 +++ src/screen-sdl-gl.h 2011-01-25 15:06:04 +0000 @@ -21,8 +21,8 @@ * Ben Smith (original glmark benchmark) * Alexandros Frantzis (glmark2) */ -#ifndef _SCREEN_SDL_GL_H -#define _SCREEN_SDL_GL_H +#ifndef GLMARK2_SCREEN_SDL_GL_H_ +#define GLMARK2_SCREEN_SDL_GL_H_ #include "screen-sdl.h" === modified file 'src/screen-sdl-glesv2.h' --- src/screen-sdl-glesv2.h 2011-01-25 15:00:12 +0000 +++ src/screen-sdl-glesv2.h 2011-01-25 15:06:04 +0000 @@ -21,8 +21,8 @@ * Ben Smith (original glmark benchmark) * Alexandros Frantzis (glmark2) */ -#ifndef _SCREEN_SDL_GLESv2_H -#define _SCREEN_SDL_GLESv2_H +#ifndef GLMARK2_SCREEN_SDL_GLESv2_H_ +#define GLMARK2_SCREEN_SDL_GLESv2_H_ #include "screen-sdl.h" === modified file 'src/screen-sdl.h' --- src/screen-sdl.h 2011-01-25 15:00:12 +0000 +++ src/screen-sdl.h 2011-01-25 15:06:04 +0000 @@ -21,8 +21,8 @@ * Ben Smith (original glmark benchmark) * Alexandros Frantzis (glmark2) */ -#ifndef _SCREEN_SDL_H -#define _SCREEN_SDL_H +#ifndef GLMARK2_SCREEN_SDL_H_ +#define GLMARK2_SCREEN_SDL_H_ #include "screen.h" === modified file 'src/screen.h' --- src/screen.h 2011-01-25 15:00:12 +0000 +++ src/screen.h 2011-01-25 15:06:04 +0000 @@ -21,8 +21,8 @@ * Ben Smith (original glmark benchmark) * Alexandros Frantzis (glmark2) */ -#ifndef _SCREEN_H -#define _SCREEN_H +#ifndef GLMARK2_SCREEN_H_ +#define GLMARK2_SCREEN_H_ #include "oglsdl.h" #include "matrix.h" === modified file 'src/shader.h' --- src/shader.h 2011-01-25 15:00:12 +0000 +++ src/shader.h 2011-01-25 15:06:04 +0000 @@ -21,8 +21,8 @@ * Ben Smith (original glmark benchmark) * Alexandros Frantzis (glmark2) */ -#ifndef _SHADER_H -#define _SHADER_H +#ifndef GLMARK2_SHADER_H_ +#define GLMARK2_SHADER_H_ #include "oglsdl.h" === modified file 'src/texture.h' --- src/texture.h 2011-01-25 15:00:12 +0000 +++ src/texture.h 2011-01-25 15:06:04 +0000 @@ -21,8 +21,8 @@ * Ben Smith (original glmark benchmark) * Alexandros Frantzis (glmark2) */ -#ifndef _TEXTURE_H -#define _TEXTURE_H +#ifndef GLMARK2_TEXTURE_H_ +#define GLMARK2_TEXTURE_H_ #include "oglsdl.h" === modified file 'src/vector.h' --- src/vector.h 2011-01-25 15:00:12 +0000 +++ src/vector.h 2011-01-25 15:06:04 +0000 @@ -21,8 +21,8 @@ * Ben Smith (original glmark benchmark) * Alexandros Frantzis (glmark2) */ -#ifndef _VECTOR_H -#define _VECTOR_H +#ifndef GLMARK2_VECTOR_H_ +#define GLMARK2_VECTOR_H_ #include "oglsdl.h"