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 f83ed3f17db2867b1b7e0fa6cbeed18fcd7dbbc8 (commit) from 7479594ee56b8759d967aa72795dc1b5fdfa2327 (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/f83ed3f17db2867b1b7e0fa6cbeed18fcd7db...
commit f83ed3f17db2867b1b7e0fa6cbeed18fcd7dbbc8 Author: Cyril Hrubis metan@ucw.cz Date: Sat Mar 10 21:56:30 2012 +0100
configure: Add check for swig.
diff --git a/configure b/configure index 24fc5f2..394b1b7 100755 --- a/configure +++ b/configure @@ -48,6 +48,17 @@ def python_module_installed(cfg, module): sys.stderr.write('Yesn') return True
+def check_for_swig(cfg): + sys.stderr.write("Checking for working swig ... ") + + ret = os.system("%s -version &> /dev/null" % cfg['SWIG'][0]) + + if ret: + sys.stderr.write('Non') + cfg['SWIG'][0] = '' + else: + sys.stderr.write("Yesn") + # # Library checking api # @@ -121,6 +132,7 @@ def basic_checks(cfg): exit(1) if not python_module_installed(cfg, 'jinja2'): exit(1) + check_for_swig(cfg) sys.stderr.write("n")
#
-----------------------------------------------------------------------
Summary of changes: configure | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 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.