Revision: 3058 http://geany.svn.sourceforge.net/geany/?rev=3058&view=rev Author: eht16 Date: 2008-10-07 18:52:26 +0000 (Tue, 07 Oct 2008)
Log Message: ----------- Add missing 'mandatory' attribute for the GTK check. Change build directory to '_build_'.
Modified Paths: -------------- trunk/ChangeLog trunk/wscript
Modified: trunk/ChangeLog =================================================================== --- trunk/ChangeLog 2008-10-07 18:52:09 UTC (rev 3057) +++ trunk/ChangeLog 2008-10-07 18:52:26 UTC (rev 3058) @@ -6,6 +6,9 @@ * src/editor.c: Fix wrong cursor positioning while line breaking when the last character on the line was a space. + * src/wscript: + Add missing 'mandatory' attribute for the GTK check. + Change build directory to '_build_'.
2008-10-07 Nick Treleaven <nick(dot)treleaven(at)btinternet(dot)com>
Modified: trunk/wscript =================================================================== --- trunk/wscript 2008-10-07 18:52:09 UTC (rev 3057) +++ trunk/wscript 2008-10-07 18:52:26 UTC (rev 3058) @@ -47,7 +47,7 @@ VERSION = '0.15'
srcdir = '.' -blddir = 'build' +blddir = '_build_'
tagmanager_sources = [ @@ -167,7 +167,7 @@ # checked with cc not cxx conf.check_tool('compiler_cxx intltool misc')
- conf.check_cfg(package='gtk+-2.0', atleast_version='2.6.0', uselib_store='GTK') + conf.check_cfg(package='gtk+-2.0', atleast_version='2.6.0', uselib_store='GTK', mandatory=True) conf.check_cfg(package='gtk+-2.0', args='--cflags --libs', uselib_store='GTK')
# GTK version check
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.