[SCM] WebKit Debian packaging branch, webkit-1.1, updated. upstream/1.1.15.1-1414-gc69ee75

eric at webkit.org eric at webkit.org
Thu Oct 29 20:47:27 UTC 2009


The following commit has been merged in the webkit-1.1 branch:
commit 0f0586d8ad15d37f036aa4f1fb154bac3dabaaf8
Author: eric at webkit.org <eric at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Mon Oct 19 06:43:44 2009 +0000

    2009-10-18  Kwang Yul Seo  <skyul at company100.net>
    
            Reviewed by Darin Adler.
    
            Use _stricmp and _strnicmp instead of deprecated stricmp and strnicmp.
            https://bugs.webkit.org/show_bug.cgi?id=30474
    
            stricmp and strnicmp are deprecated beginning in Visual
            C++ 2005. Use _stricmp and _strnicmp instead in StringExtras.h.
    
            * wtf/StringExtras.h:
            (strncasecmp):
            (strcasecmp):
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@49765 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/JavaScriptCore/ChangeLog b/JavaScriptCore/ChangeLog
index 6d439be..06b60ea 100644
--- a/JavaScriptCore/ChangeLog
+++ b/JavaScriptCore/ChangeLog
@@ -1,3 +1,17 @@
+2009-10-18  Kwang Yul Seo  <skyul at company100.net>
+
+        Reviewed by Darin Adler.
+
+        Use _stricmp and _strnicmp instead of deprecated stricmp and strnicmp.
+        https://bugs.webkit.org/show_bug.cgi?id=30474
+
+        stricmp and strnicmp are deprecated beginning in Visual
+        C++ 2005. Use _stricmp and _strnicmp instead in StringExtras.h.
+
+        * wtf/StringExtras.h:
+        (strncasecmp):
+        (strcasecmp):
+
 2009-10-16  Geoffrey Garen  <ggaren at apple.com>
 
         Build fix: apparently we shouldn't export those symbols?
diff --git a/JavaScriptCore/wtf/StringExtras.h b/JavaScriptCore/wtf/StringExtras.h
index 559e3f2..1120d65 100644
--- a/JavaScriptCore/wtf/StringExtras.h
+++ b/JavaScriptCore/wtf/StringExtras.h
@@ -75,12 +75,12 @@ inline char* strdup(const char* strSource)
 
 inline int strncasecmp(const char* s1, const char* s2, size_t len)
 {
-    return strnicmp(s1, s2, len);
+    return _strnicmp(s1, s2, len);
 }
 
 inline int strcasecmp(const char* s1, const char* s2)
 {
-    return stricmp(s1, s2);
+    return _stricmp(s1, s2);
 }
 
 #endif

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list