Revision: 2003 http://geany-plugins.svn.sourceforge.net/geany-plugins/?rev=2003&view=re... Author: codebrainz Date: 2011-03-27 10:12:40 +0000 (Sun, 27 Mar 2011)
Log Message: ----------- Update Waf build script.
Modified Paths: -------------- trunk/geany-plugins/devhelp/wscript_configure
Modified: trunk/geany-plugins/devhelp/wscript_configure =================================================================== --- trunk/geany-plugins/devhelp/wscript_configure 2011-03-27 10:12:14 UTC (rev 2002) +++ trunk/geany-plugins/devhelp/wscript_configure 2011-03-27 10:12:40 UTC (rev 2003) @@ -23,8 +23,15 @@
from build.wafutils import check_cfg_cached
+packages = [ + ('gthread-2.0','','GTHREAD'), + ('libdevhelp-1.0', '', 'LIBDEVHELP') + ]
-check_cfg_cached(conf, - package='libdevhelp-1.0', - uselib_store='DEVHELP', - args='--cflags --libs') +for package_name, package_version, uselib_store in packages: + check_cfg_cached(conf, + package=package_name, + atleast_version=package_version, + uselib_store=uselib_store, + mandatory=True, + args='--cflags --libs')
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
plugins-commits@lists.geany.org