[Goodies-commits] r6403 - sion/trunk

Enrico Troeger enrico at xfce.org
Mon Jan 5 00:35:18 CET 2009


Author: enrico
Date: 2009-01-04 23:35:18 +0000 (Sun, 04 Jan 2009)
New Revision: 6403

Modified:
   sion/trunk/wscript
Log:
Minor simplification in package checking.

Modified: sion/trunk/wscript
===================================================================
--- sion/trunk/wscript	2009-01-04 21:33:31 UTC (rev 6402)
+++ sion/trunk/wscript	2009-01-04 23:35:18 UTC (rev 6403)
@@ -43,10 +43,10 @@
 def configure(conf):
 	conf.check_tool('compiler_cc intltool misc gnu_dirs')
 
-	conf.check_cfg(package='gtk+-2.0', atleast_version='2.12.0', uselib_store='GTK', mandatory=True)
-	conf.check_cfg(package='gtk+-2.0', args='--cflags --libs', uselib_store='GTK')
-	conf.check_cfg(package='gio-2.0', atleast_version='2.16.0', uselib_store='GIO', mandatory=True)
-	conf.check_cfg(package='gio-2.0', args='--cflags --libs', uselib_store='GIO')
+	conf.check_cfg(package='gtk+-2.0', atleast_version='2.12.0', uselib_store='GTK',
+		mandatory=True, args='--cflags --libs')
+	conf.check_cfg(package='gio-2.0', atleast_version='2.16.0', uselib_store='GIO',
+		mandatory=True, args='--cflags --libs')
 
 	gtk_version = conf.check_cfg(modversion='gtk+-2.0', uselib_store='GTK')
 	gio_version = conf.check_cfg(modversion='gio-2.0', uselib_store='GIO')




More information about the Goodies-commits mailing list