[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.18-1-697-g2f78b87
eric at webkit.org
eric at webkit.org
Wed Jan 20 22:24:37 UTC 2010
The following commit has been merged in the debian/unstable branch:
commit d919f944ce994800056f6d4c0478a8a745e4a531
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