[Xfce4-commits] <midori:master> Fix libsoup version check #defines

Christian Dywan noreply at xfce.org
Mon Apr 16 20:02:02 CEST 2012


Updating branch refs/heads/master
         to c7c172f7ffc9316be5954c920654e1deb9f470b7 (commit)
       from fc7e30f51633f3fd21a35ce3e05d25c86242ae75 (commit)

commit c7c172f7ffc9316be5954c920654e1deb9f470b7
Author: Christian Dywan <christian at twotoasts.de>
Date:   Mon Apr 16 19:17:23 2012 +0200

    Fix libsoup version check #defines
    
    Fixes: https://bugs.launchpad.net/midori/+bug/983137

 wscript |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/wscript b/wscript
index db74324..c7a0c87 100644
--- a/wscript
+++ b/wscript
@@ -260,11 +260,11 @@ def configure (conf):
     check_pkg ('libsoup-2.4', '2.27.90')
     conf.define ('LIBSOUP_VERSION', conf.check_cfg (modversion='libsoup-2.4'))
     if check_version (conf.env['LIBSOUP_VERSION'], 2, 29, 3):
-        conf.define ('LIBSOUP_2_29_3', 1)
+        conf.define ('HAVE_LIBSOUP_2_29_3', 1)
     if check_version (conf.env['LIBSOUP_VERSION'], 2, 29, 91):
-        conf.define ('LIBSOUP_2_29_91', 1)
+        conf.define ('HAVE_LIBSOUP_2_29_91', 1)
     if check_version (conf.env['LIBSOUP_VERSION'], 2, 37, 1):
-        conf.define ('LIBSOUP_2_37_1', 1)
+        conf.define ('HAVE_LIBSOUP_2_37_1', 1)
     check_pkg ('libxml-2.0', '2.6')
     check_pkg ('sqlite3', '3.0', True, var='SQLITE')
 


More information about the Xfce4-commits mailing list