[SCM] WebKit Debian packaging branch, webkit-1.2, updated. upstream/1.1.90-6072-g9a69373

eric at webkit.org eric at webkit.org
Thu Apr 8 01:07:52 UTC 2010


The following commit has been merged in the webkit-1.2 branch:
commit db42362b5774638f5242eead1919ab6228e02939
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Thu Jan 14 19:57:14 2010 +0000

    2010-01-14  Kwang Yul Seo  <skyul at company100.net>
    
            Reviewed by Alexey Proskuryakov.
    
            Add ENABLE(XSLT) guard to TransformSourceLibxslt.cpp
            https://bugs.webkit.org/show_bug.cgi?id=33665
    
            TransformSource is available only when ENABLE(XSLT) guard is true.
    
            * dom/TransformSourceLibxslt.cpp:
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@53284 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog
index e36bb95..c8580e0 100644
--- a/WebCore/ChangeLog
+++ b/WebCore/ChangeLog
@@ -1,3 +1,14 @@
+2010-01-14  Kwang Yul Seo  <skyul at company100.net>
+
+        Reviewed by Alexey Proskuryakov.
+
+        Add ENABLE(XSLT) guard to TransformSourceLibxslt.cpp
+        https://bugs.webkit.org/show_bug.cgi?id=33665
+
+        TransformSource is available only when ENABLE(XSLT) guard is true.
+
+        * dom/TransformSourceLibxslt.cpp:
+
 2010-01-14  Adam Roben  <aroben at apple.com>
 
         Treat all synchronous loads equally in FrameLoader::loadSubframe
diff --git a/WebCore/dom/TransformSourceLibxslt.cpp b/WebCore/dom/TransformSourceLibxslt.cpp
index 33a85e8..e058438 100644
--- a/WebCore/dom/TransformSourceLibxslt.cpp
+++ b/WebCore/dom/TransformSourceLibxslt.cpp
@@ -24,6 +24,8 @@
  */
 
 #include "config.h"
+
+#if ENABLE(XSLT)
 #include "TransformSource.h"
 
 #include <libxml/tree.h>
@@ -41,3 +43,5 @@ TransformSource::~TransformSource()
 }
 
 }
+
+#endif

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list