mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-22 01:46:15 +01:00
waf 1.8.5
This commit is contained in:
parent
b694c0da84
commit
18ce4bdc21
@ -1,3 +1,11 @@
|
||||
NEW IN WAF 1.8.5
|
||||
----------------
|
||||
* Enhanced Sun compiler detection #1510
|
||||
* Fixed a regression in Emacs shell support #1511
|
||||
* Fixed a regression in cross-directory builds (Linux only) #1512
|
||||
* Executable wscript files #1517
|
||||
* Generic script signing utility #1520
|
||||
|
||||
NEW IN WAF 1.8.4
|
||||
----------------
|
||||
* Various improvements in stale.py
|
||||
|
@ -3,6 +3,8 @@
|
||||
.text
|
||||
.align 2
|
||||
|
||||
.section .data
|
||||
|
||||
val:
|
||||
.long SOME_VALUE
|
||||
|
||||
|
@ -32,7 +32,7 @@ POSSIBILITY OF SUCH DAMAGE.
|
||||
|
||||
import os, sys, inspect
|
||||
|
||||
VERSION="1.8.4"
|
||||
VERSION="1.8.5"
|
||||
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=0x1080400
|
||||
HEXVERSION=0x1080500
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
WAFVERSION="1.8.4"
|
||||
WAFVERSION="1.8.5"
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
WAFREVISION="67a5bb5c730ba3abebccdbe64a4f509d92f33b9e"
|
||||
WAFREVISION="b694c0da84f1a3f6b27b9d4a07c9f5cb2116d831"
|
||||
"""Constant updated on new releases"""
|
||||
|
||||
ABI = 98
|
||||
|
Loading…
Reference in New Issue
Block a user