mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 09:57:15 +01:00
waf 1.8.1
This commit is contained in:
parent
05ef26f3b8
commit
037cb7af78
@ -1,3 +1,8 @@
|
||||
NEW IN WAF 1.8.1
|
||||
----------------
|
||||
* Re-added compatible option group names from waf 1.7 #1495
|
||||
* Fixed bld(define='') splitting which was disabled by mistake
|
||||
|
||||
NEW IN WAF 1.8.0
|
||||
----------------
|
||||
* Python 2.5 is now required
|
||||
|
@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
import os, sys, inspect
|
||||
|
||||
VERSION="1.8.0"
|
||||
VERSION="1.8.1"
|
||||
REVISION="x"
|
||||
INSTALL="x"
|
||||
C1='x'
|
||||
|
@ -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=0x1080000
|
||||
HEXVERSION=0x1080100
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
WAFVERSION="1.8.0"
|
||||
WAFVERSION="1.8.1"
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
WAFREVISION="6c9e7c6233c1d97b39d4aa7327068de74dfcfe7e"
|
||||
WAFREVISION="05ef26f3b875de31d3ae5c5c7a62e0eb5df88fea"
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
ABI = 98
|
||||
|
@ -36,7 +36,7 @@ Usage:
|
||||
|
||||
"""
|
||||
|
||||
import os, shutil
|
||||
import os
|
||||
from waflib import Utils, Configure
|
||||
|
||||
try:
|
||||
|
Loading…
Reference in New Issue
Block a user