waf 1.8.19

This commit is contained in:
Thomas Nagy 2016-01-24 10:55:43 +01:00
parent f14a6d4309
commit 10381833af
No known key found for this signature in database
GPG Key ID: 67A565EDFDF90E64
4 changed files with 13 additions and 5 deletions

View File

@ -1,3 +1,11 @@
NEW IN WAF 1.8.19
-----------------
* Fixed the Intel Fortran compiler detection on Windows systems #1681
* Fixed the detection of newer Sun compilers #1686
* Fixed the detection of NAG Fortran compilers #1684
* Fixed missing variable dependencies of the form ARCH_ST used in ${ARCH_ST:ARCH} expressions
* Added conf.check(..., comment='some text') to document configuration headers
NEW IN WAF 1.8.18
-----------------
* Fixed a regression in exec_cfg() introduced in 1fbac66 #1670

View File

@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys, inspect
VERSION="1.8.18"
VERSION="1.8.19"
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=0x1081200
HEXVERSION=0x1081300
"""Constant updated on new releases"""
WAFVERSION="1.8.18"
WAFVERSION="1.8.19"
"""Constant updated on new releases"""
WAFREVISION="62efd566280f494cdf4d7940aac85f2b59ef660b"
WAFREVISION="f14a6d43092d3419d90c1ce16b9d3c700309d7b3"
"""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.18"
VERSION="1.8.19"
APPNAME='waf'
REVISION=''