From patchwork Thu Jul 21 12:36:34 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: 2963 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 96C0C23F4D for ; Thu, 21 Jul 2011 12:43:10 +0000 (UTC) Received: from mail-qy0-f180.google.com (mail-qy0-f180.google.com [209.85.216.180]) by fiordland.canonical.com (Postfix) with ESMTP id 65B1EA184BF for ; Thu, 21 Jul 2011 12:43:10 +0000 (UTC) Received: by mail-qy0-f180.google.com with SMTP id 30so845420qyk.11 for ; Thu, 21 Jul 2011 05:43:10 -0700 (PDT) Received: by 10.229.68.200 with SMTP id w8mr191189qci.114.1311252190188; Thu, 21 Jul 2011 05:43:10 -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 hl14cs139526qcb; Thu, 21 Jul 2011 05:43:09 -0700 (PDT) Received: by 10.216.241.132 with SMTP id g4mr219887wer.9.1311251796901; 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 u54si2371747wec.126.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-0000DF-6q 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 C79332EA03C for ; Thu, 21 Jul 2011 12:36:34 +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: 69 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~glmark2-dev/glmark2/trunk] Rev 69: Rename --gl, --glesv2 configuration options to --enable-gl, --enable-glesv2. Message-Id: <20110721123634.17019.21640.launchpad@loganberry.canonical.com> Date: Thu, 21 Jul 2011 12:36:34 -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: c5a415873c199f39edde1fc080c00fad6fa3b3b3 ------------------------------------------------------------ revno: 69 committer: Alexandros Frantzis timestamp: Tue 2011-01-25 02:43:15 +0200 message: Rename --gl,--glesv2 configuration options to --enable-gl, --enable-glesv2. modified: wscript --- 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 'wscript' --- wscript 2010-07-28 15:02:36 +0000 +++ wscript 2011-01-25 00:43:15 +0000 @@ -21,15 +21,15 @@ opt.tool_options('compiler_cc') opt.tool_options('compiler_cxx') - opt.add_option('--gl', action='store_true', dest = 'gl', default = False, help='build using OpenGL 2.0') - opt.add_option('--glesv2', action='store_true', dest = 'glesv2', default = False, help='build using OpenGL ES 2.0') + opt.add_option('--enable-gl', action='store_true', dest = 'gl', default = False, help='build using OpenGL 2.0') + opt.add_option('--enable-glesv2', action='store_true', dest = 'glesv2', default = False, help='build using OpenGL ES 2.0') opt.add_option('--no-debug', action='store_false', dest = 'debug', default = True, help='disable compiler debug information') opt.add_option('--no-opt', action='store_false', dest = 'opt', default = True, help='disable compiler optimizations') opt.add_option('--data-path', action='store', dest = 'data_path', help='the path to install the data to') def configure(conf): if not Options.options.gl and not Options.options.glesv2: - conf.fatal("You must configure using at least one of --gl, --glesv2") + conf.fatal("You must configure using at least one of --enable-gl, --enable-glesv2") conf.check_tool('compiler_cc') conf.check_tool('compiler_cxx')