]> spindle.queued.net Git - midori/commitdiff
Print warnings after configuring if packages are missing
authorChristian Dywan <christian@twotoasts.de>
Mon, 10 Nov 2008 21:18:35 +0000 (22:18 +0100)
committerChristian Dywan <christian@twotoasts.de>
Mon, 10 Nov 2008 21:18:35 +0000 (22:18 +0100)
wscript

diff --git a/wscript b/wscript
index 51ea3e631e8a4d7ea909c02871569b6306d2d51c..c6558f8ab7138855965b472393701bdf34adb1c9 100644 (file)
--- a/wscript
+++ b/wscript
@@ -122,6 +122,20 @@ def configure (conf):
     conf.write_config_header ('config.h')
     conf.env.append_value ('CCFLAGS', '-DHAVE_CONFIG_H')
 
+    print
+    if single_instance == 'not available':
+        print "Single instance support is unavailable in this build."
+        print " Install libUnique and reconfigure to enable it."
+        print
+    if libsoup == 'not available':
+        print "Icons, view source and Save as are unavailable in this build."
+        print " Install libSoup and reconfigure to enable these features."
+        print
+    if sqlite == 'not available':
+        print "History storage on disk is unavailable in this build."
+        print " Install sqlite3 and reconfigure to enable it."
+        print
+
 def set_options (opt):
     opt.tool_options ('compiler_cc')
     opt.tool_options ('intltool')