Skip to content

Commit

Permalink
waf 1.8.19
Browse files Browse the repository at this point in the history
  • Loading branch information
ita1024 committed Jan 24, 2016
1 parent f14a6d4 commit 1038183
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 5 deletions.
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion waf-light
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions waflib/Context.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
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
Expand Down
2 changes: 1 addition & 1 deletion wscript
Original file line number Diff line number Diff line change
Expand Up @@ -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=''

Expand Down

0 comments on commit 1038183

Please sign in to comment.