waf 1.8.15

This commit is contained in:
Thomas Nagy 2015-10-16 23:34:02 +02:00
parent 971b2d32b7
commit f340819d50
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64
4 changed files with 8 additions and 7 deletions

View File

@ -1,12 +1,13 @@
NEW IN WAF 1.8.15
-----------------
* Multiple commands can be provided in run_str/rule
* conf.check(header_name=) will compile only (no link by default)
* Added a workaround for building using IronPython
* conf.check(header_name=) should compile only (not link by default)
* Added a workaround for non-standard python installations (Python bug 7352) - #1636
* Let conf.check_cfg use contents of conf.env.env as os environment
* Enabled gzip compression when creating the Waf file with Jython
* Enabled relative paths in --top and --out
* Added a workaround for building using IronPython
* Added a workaround for pkg-config usage within msys2
NEW IN WAF 1.8.14
-----------------

View File

@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys, inspect
VERSION="1.8.14"
VERSION="1.8.15"
REVISION="x"
GIT="x"
INSTALL="x"

View File

@ -11,13 +11,13 @@ from waflib import Utils, Errors, Logs
import waflib.Node
# the following 3 constants are updated on each new release (do not touch)
HEXVERSION=0x1080e00
HEXVERSION=0x1080f00
"""Constant updated on new releases"""
WAFVERSION="1.8.14"
WAFVERSION="1.8.15"
"""Constant updated on new releases"""
WAFREVISION="ce8234c396bb246a20ea9f51594ee051d5b378e7"
WAFREVISION="971b2d32b7a72ee2176b94f1eacbd176bbf2822c"
"""Git revision when the waf version is updated"""
ABI = 98

View File

@ -10,7 +10,7 @@ To add a tool that does not exist in the folder compat15, pass an absolute path:
"""
VERSION="1.8.14"
VERSION="1.8.15"
APPNAME='waf'
REVISION=''