[Xfce4-commits] <midori:master> Don't install Cookie Security Manager

Christian Dywan noreply at xfce.org
Wed Feb 27 22:46:01 CET 2013


Updating branch refs/heads/master
         to 7ebfdd7fa05aaa8b05b11abf319bbe9809f2afba (commit)
       from 0f1efd04dbacf3967b4bff0d5b8aad1119036b33 (commit)

commit 7ebfdd7fa05aaa8b05b11abf319bbe9809f2afba
Author: Christian Dywan <christian at twotoasts.de>
Date:   Wed Feb 27 22:37:20 2013 +0100

    Don't install Cookie Security Manager
    
    It's not stable enough for day to day use yet.

 extensions/wscript_build |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/extensions/wscript_build b/extensions/wscript_build
index 48a9043..21b4eae 100644
--- a/extensions/wscript_build
+++ b/extensions/wscript_build
@@ -2,6 +2,7 @@
 # WAF build script for midori
 # This file is licensed under the terms of the expat license, see the file EXPAT.
 
+import Options
 import os
 
 extensions = os.listdir ('extensions')
@@ -30,6 +31,10 @@ for extension in extensions:
     if bld.env['HAVE_WEBKIT2'] and target not in ['tab-panel', 'statusbar-features', 'shortcuts', 'status-clock', 'tab-minimized', 'toolbar-editor']:
         continue
 
+    # Don't install unstable extensions
+    if Options.commands['install'] and target in ['cookie-permissions']:
+        continue
+
     obj = bld.new_task_gen ('cc', 'shlib')
     obj.target = target
     obj.includes = '.. ../katze ../midori'


More information about the Xfce4-commits mailing list