Revision: 2820
http://geany.svn.sourceforge.net/geany/?rev=2820&view=rev
Author: ntrel
Date: 2008-07-25 14:59:16 +0000 (Fri, 25 Jul 2008)
Log Message:
-----------
Branch to differentiate between indent width and tab width.
Added Paths:
-----------
branches/custom-tab-width/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
Revision: 2815
http://geany.svn.sourceforge.net/geany/?rev=2815&view=rev
Author: eht16
Date: 2008-07-25 09:49:54 +0000 (Fri, 25 Jul 2008)
Log Message:
-----------
Update waf to its latest SVN rev and exclude some unused modules which makes it another 20 KB smaller.
Update waf script to reflect waf API changes(module Install removed).
Modified Paths:
--------------
trunk/ChangeLog
trunk/waf
trunk/wscript
Modified: trunk/ChangeLog
===================================================================
--- trunk/ChangeLog 2008-07-25 09:48:55 UTC (rev 2814)
+++ trunk/ChangeLog 2008-07-25 09:49:54 UTC (rev 2815)
@@ -3,6 +3,10 @@
* data/filetypes.sh, src/highlighting.c:
Add missing "error" and heredoc styles to filetype Shellscript
(related to #2026853).
+ * waf, wscript:
+ Update waf to its latest SVN rev and exclude some unused modules
+ which makes it another 20 KB smaller.
+ Update waf script to reflect waf API changes(module Install removed).
2008-07-24 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/waf
===================================================================
--- trunk/waf 2008-07-25 09:48:55 UTC (rev 2814)
+++ trunk/waf 2008-07-25 09:49:54 UTC (rev 2815)
@@ -38,10 +38,10 @@
except:pass
VERSION="1.4.9"
-REVISION="da1834aaaf9820ce647a325c2c66d6b8"
+REVISION="a0bd5c68d38276581a60c2cc516dbf26"
INSTALL=sys.platform=='win32' and 'c:/temp' or '/usr/local'
-C1='#/'
-C2='#-'
+C1='#-'
+C2='#%'
cwd = os.getcwd()
join = os.path.join
@@ -127,5 +127,5 @@
Scripting.prepare(t, cwd, VERSION, wafdir)
#==>
@@ Diff output truncated at 100000 characters. @@
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.