summaryrefslogtreecommitdiff
path: root/waf
diff options
context:
space:
mode:
authorKarl Linden <karl.j.linden@gmail.com>2018-10-06 10:51:14 +0200
committerKarl Linden <karl.j.linden@gmail.com>2018-10-06 13:16:24 +0200
commiteeef49954a0cc4bc5f120c12fe9eb988bd93ccd8 (patch)
treeacc5261a87172e240c77217eaaec0eb586aa9dfa /waf
parentf5f22c6befc1b4bc5807de00496c087125f92adf (diff)
downloadjack2-eeef49954a0cc4bc5f120c12fe9eb988bd93ccd8.tar.gz
Revert "Stupid attempt at updating waf"
This reverts commit cf3f8205c4509966f04e6b77dad7c002db16d9d8. It was a good initiative, but waf 2.0 introces backward incompatible changes that break the pkg-config checks. The config checks will be updated before migrating to waf 2.0.
Diffstat (limited to 'waf')
-rwxr-xr-xwaf25
1 files changed, 14 insertions, 11 deletions
diff --git a/waf b/waf
index 3670c2ed..108d533c 100755
--- a/waf
+++ b/waf
@@ -1,7 +1,7 @@
#!/usr/bin/env python
-# encoding: latin-1
-# Thomas Nagy, 2005-2018
-#
+# encoding: ISO8859-1
+# Thomas Nagy, 2005-2015
+
"""
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
@@ -32,16 +32,18 @@ POSSIBILITY OF SUCH DAMAGE.
import os, sys, inspect
-VERSION="2.0.11"
-REVISION="4af5f6d4e441ea5db7e393d841ce352c"
-GIT="fe03c6fa470f0bc3c086baafed8c6b4b6d28a245"
-INSTALL=''
-C1='#4'
-C2='#/'
-C3='#&'
+VERSION="1.8.17"
+REVISION="x"
+GIT="x"
+INSTALL="x"
+C1='x'
+C2='x'
+C3='x'
cwd = os.getcwd()
join = os.path.join
+if sys.hexversion<0x206000f:
+ raise ImportError('Python >= 2.6 is required to create the waf file')
WAF='waf'
def b(x):
@@ -160,6 +162,7 @@ wafdir = find_lib()
sys.path.insert(0, wafdir)
if __name__ == '__main__':
-
+ #import waflib.extras.compat15#PRELUDE
from waflib import Scripting
Scripting.waf_entry_point(cwd, VERSION, wafdir)
+