[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677

darin darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:45:42 UTC 2009


The following commit has been merged in the debian/unstable branch:
commit 238db8d8edf55736c32bfb1b1804fdab2f0f0c21
Author: darin <darin at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Sep 28 23:57:13 2002 +0000

    	Turn -Werror back on. There must have been some miscommunication
    	about the fat build; this was supposed to have been on.
    
            * WebCore.pbproj/project.pbxproj: Add -Werror back.
    
            * kwq/WebCoreHistory.h: Add missing method to fix warning.
            * kwq/KWQKHistoryProvider.mm: Tweak.
    
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2201 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/WebCore/ChangeLog-2002-12-03 b/WebCore/ChangeLog-2002-12-03
index 6542e75..4b71abb 100644
--- a/WebCore/ChangeLog-2002-12-03
+++ b/WebCore/ChangeLog-2002-12-03
@@ -1,7 +1,17 @@
 2002-09-28  Darin Adler  <darin at apple.com>
 
+	Turn -Werror back on. There must have been some miscommunication
+	about the fat build; this was supposed to have been on.
+
+        * WebCore.pbproj/project.pbxproj: Add -Werror back.
+
+        * kwq/WebCoreHistory.h: Add missing method to fix warning.
+        * kwq/KWQKHistoryProvider.mm: Tweak.
+
+2002-09-28  Darin Adler  <darin at apple.com>
+
 	Give the next fat build a better chance of working with the
-	new gcc without turning warnings off.
+	new gcc without turning -Werror off.
 
         * khtml/css/cssparser.cpp: Use a macro to disable inlining.
         * khtml/html/htmltokenizer.cpp: Ditto.
diff --git a/WebCore/ChangeLog-2003-10-25 b/WebCore/ChangeLog-2003-10-25
index 6542e75..4b71abb 100644
--- a/WebCore/ChangeLog-2003-10-25
+++ b/WebCore/ChangeLog-2003-10-25
@@ -1,7 +1,17 @@
 2002-09-28  Darin Adler  <darin at apple.com>
 
+	Turn -Werror back on. There must have been some miscommunication
+	about the fat build; this was supposed to have been on.
+
+        * WebCore.pbproj/project.pbxproj: Add -Werror back.
+
+        * kwq/WebCoreHistory.h: Add missing method to fix warning.
+        * kwq/KWQKHistoryProvider.mm: Tweak.
+
+2002-09-28  Darin Adler  <darin at apple.com>
+
 	Give the next fat build a better chance of working with the
-	new gcc without turning warnings off.
+	new gcc without turning -Werror off.
 
         * khtml/css/cssparser.cpp: Use a macro to disable inlining.
         * khtml/html/htmltokenizer.cpp: Ditto.
diff --git a/WebCore/ChangeLog-2005-08-23 b/WebCore/ChangeLog-2005-08-23
index 6542e75..4b71abb 100644
--- a/WebCore/ChangeLog-2005-08-23
+++ b/WebCore/ChangeLog-2005-08-23
@@ -1,7 +1,17 @@
 2002-09-28  Darin Adler  <darin at apple.com>
 
+	Turn -Werror back on. There must have been some miscommunication
+	about the fat build; this was supposed to have been on.
+
+        * WebCore.pbproj/project.pbxproj: Add -Werror back.
+
+        * kwq/WebCoreHistory.h: Add missing method to fix warning.
+        * kwq/KWQKHistoryProvider.mm: Tweak.
+
+2002-09-28  Darin Adler  <darin at apple.com>
+
 	Give the next fat build a better chance of working with the
-	new gcc without turning warnings off.
+	new gcc without turning -Werror off.
 
         * khtml/css/cssparser.cpp: Use a macro to disable inlining.
         * khtml/html/htmltokenizer.cpp: Ditto.
diff --git a/WebCore/WebCore.pbproj/project.pbxproj b/WebCore/WebCore.pbproj/project.pbxproj
index df69e9e..f04cea1 100644
--- a/WebCore/WebCore.pbproj/project.pbxproj
+++ b/WebCore/WebCore.pbproj/project.pbxproj
@@ -144,7 +144,7 @@
 				SECTORDER_FLAGS = "";
 				USE_GCC3_PFE_SUPPORT = YES;
 				WARNING_CFLAGS = "$(WARNING_COMMONFLAGS)";
-				WARNING_COMMONFLAGS = "-Wall -W -Wcast-align -Wchar-subscripts -Wformat-security -Wmissing-format-attribute -Wmissing-prototypes -Wpointer-arith -Wwrite-strings -Wno-format-y2k -Wno-unused-parameter";
+				WARNING_COMMONFLAGS = "-Werror -Wall -W -Wcast-align -Wchar-subscripts -Wformat-security -Wmissing-format-attribute -Wmissing-prototypes -Wpointer-arith -Wwrite-strings -Wno-format-y2k -Wno-unused-parameter";
 				WARNING_CPLUSPLUSFLAGS = "$(WARNING_COMMONFLAGS)";
 				WRAPPER_EXTENSION = framework;
 			};
diff --git a/WebCore/kwq/KWQKHistoryProvider.mm b/WebCore/kwq/KWQKHistoryProvider.mm
index 9ec9317..aaea0e1 100644
--- a/WebCore/kwq/KWQKHistoryProvider.mm
+++ b/WebCore/kwq/KWQKHistoryProvider.mm
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2001 Apple Computer, Inc.  All rights reserved.
+ * Copyright (C) 2001, 2002 Apple Computer, Inc.  All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
@@ -22,12 +22,10 @@
  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 
  */
-#import <Foundation/Foundation.h>
 
 #import <historyprovider.h>
 
 #import <kurl.h>
-
 #import <WebCoreHistory.h>
 
 namespace KParts {
diff --git a/WebCore/kwq/WebCoreHistory.h b/WebCore/kwq/WebCoreHistory.h
index a3920f5..d181e6c 100644
--- a/WebCore/kwq/WebCoreHistory.h
+++ b/WebCore/kwq/WebCoreHistory.h
@@ -32,6 +32,7 @@
 + (void)setSharedHistory: (WebCoreHistory *)h;
 + (WebCoreHistory *)sharedHistory;
 
+- (void)addEntryForURLString: (NSString *)urlString;
 - (BOOL)containsEntryForURLString: (NSString *)urlString;
 
 @end

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list