Update haiku-webkit build package. Use new version info

This commit is contained in:
Alexandre Deckner
2012-07-11 22:43:22 +02:00
parent 9fb13e2c1e
commit 41a212d241
2 changed files with 9 additions and 3 deletions
+1 -1
View File
@@ -421,7 +421,7 @@ if $(HAIKU_BUILD_FEATURE_TAGLIB) {
# WebKit
HAIKU_WEBKIT_FILE = webkit-0.1.1-x86-gcc4-2012-07-03.zip ;
HAIKU_WEBKIT_FILE = haikuwebkit-1.1.2-x86-gcc4-2012-07-11.zip ;
if $(TARGET_ARCH) = x86 {
if $(HAIKU_GCC_VERSION[1]) < 4 {
Echo "WebKit support not available on gcc $(HAIKU_GCC_VERSION[1])" ;
+8 -2
View File
@@ -35,6 +35,7 @@
#include "SettingsWindow.h"
#include "svn_revision.h"
#include "NetworkCookieJar.h"
#include "WebKitInfo.h"
#include "WebPage.h"
#include "WebSettings.h"
#include "WebView.h"
@@ -86,8 +87,13 @@ void
BrowserApp::AboutRequested()
{
BString aboutText("WebPositive\n\nby Ryan Leavengood, Andrea Anzani, "
"Maxime Simon, Michael Lotz, Rene Gollent and Stephan Aßmus");
aboutText << "\n\nSVN revision: " << kSVNRevision;
"Maxime Simon, Michael Lotz, Rene Gollent, Stephan Aßmus and "
"Alexandre Deckner");
aboutText << "\n\nWebPositive 1.1";
aboutText << "\n\nHaikuWebKit " << WebKitInfo::HaikuWebKitVersion();
aboutText << " (" << WebKitInfo::HaikuWebKitRevision() << ")";
aboutText << "\nWebKit " << WebKitInfo::WebKitVersion();
aboutText << " (" << WebKitInfo::WebKitRevision() << ")";
BAlert* alert = new BAlert("About WebPositive", aboutText.String(),
"Sweet!");