[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.17-1283-gcf603cf
agl at chromium.org
agl at chromium.org
Tue Jan 5 23:58:59 UTC 2010
The following commit has been merged in the webkit-1.1 branch:
commit 5df0951de2a2527d56a3179296f6598bf5b2d2a1
Author: agl at chromium.org <agl at chromium.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Wed Dec 23 01:34:28 2009 +0000
2009-12-22 Adam Langley <agl at google.com>
Build fix: not reviewed.
r52504 (https://bugs.webkit.org/show_bug.cgi?id=32845) broke the
Chromium build on Windows and Mac due to a misplaced #endif. The
buildbot didn't find the problem because it runs on Linux.
Have verified this patch with the author of the above.
* src/GraphicsContext3D.cpp:
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@52514 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/chromium/ChangeLog b/WebKit/chromium/ChangeLog
index 883abd5..9ddeada 100644
--- a/WebKit/chromium/ChangeLog
+++ b/WebKit/chromium/ChangeLog
@@ -1,3 +1,15 @@
+2009-12-22 Adam Langley <agl at google.com>
+
+ Build fix: not reviewed.
+
+ r52504 (https://bugs.webkit.org/show_bug.cgi?id=32845) broke the
+ Chromium build on Windows and Mac due to a misplaced #endif. The
+ buildbot didn't find the problem because it runs on Linux.
+
+ Have verified this patch with the author of the above.
+
+ * src/GraphicsContext3D.cpp:
+
2009-12-22 Kenneth Russell <kbr at google.com>
Reviewed by Eric Seidel.
diff --git a/WebKit/chromium/src/GraphicsContext3D.cpp b/WebKit/chromium/src/GraphicsContext3D.cpp
index 557eb98..6440552 100644
--- a/WebKit/chromium/src/GraphicsContext3D.cpp
+++ b/WebKit/chromium/src/GraphicsContext3D.cpp
@@ -289,9 +289,9 @@ private:
};
bool GraphicsContext3DInternal::s_initializedGLEW = false;
+
#if PLATFORM(LINUX)
GraphicsContext3DInternal::GLConnection* GraphicsContext3DInternal::s_gl = 0;
-#endif
GraphicsContext3DInternal::GLConnection* GraphicsContext3DInternal::GLConnection::create()
{
@@ -352,6 +352,8 @@ GraphicsContext3DInternal::GLConnection::~GLConnection()
dlclose(m_libGL);
}
+#endif // PLATFORM(LINUX)
+
GraphicsContext3DInternal::VertexAttribPointerState::VertexAttribPointerState()
: enabled(false)
, buffer(0)
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list