This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project gfxprim.git.
The branch, master has been updated via e434f9d04602003a5e0c858acc5189cac9297e36 (commit) from ad60769920b2f3ba4ed23b13cd7973b018ebc711 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- http://repo.or.cz/w/gfxprim.git/commit/e434f9d04602003a5e0c858acc5189cac9297...
commit e434f9d04602003a5e0c858acc5189cac9297e36 Author: Cyril Hrubis metan@ucw.cz Date: Tue Mar 19 20:13:43 2013 +0100
build: configure: Pick config values from env variables.
This allows us to use clang static analysis.
diff --git a/configure b/configure index 8704716..fed17b4 100755 --- a/configure +++ b/configure @@ -301,7 +301,12 @@ if __name__ == '__main__': "Checking for backtrace() ... "], "", "", ["core"]]], cfg)
parser = OptionParser(); - + + # Get configuration parameters from environment variables + for i in cfg: + if i in os.environ: + cfg[i][0] = os.environ[i] + # Enable disable libraries for linking parser.add_option("-e", "--enable", dest="enable", action="append", help="force enable library linking", metavar="libfoo")
-----------------------------------------------------------------------
Summary of changes: configure | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-)
repo.or.cz automatic notification. Contact project admin jiri.bluebear.dluhos@gmail.com if you want to unsubscribe, or site admin admin@repo.or.cz if you receive no reply.