]> git.eshelyaron.com Git - emacs.git/commitdiff
Suppress WebKitGTK+ 2.21.1 diagnostics
authorPaul Eggert <eggert@cs.ucla.edu>
Sat, 8 Dec 2018 23:29:07 +0000 (15:29 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 9 Dec 2018 00:02:31 +0000 (16:02 -0800)
* src/xwidget.c: Suppress deprecation warnings (Bug#33679).

src/xwidget.c

index 6da7a0bb3f49194312e7f55c93ce2e139477bf94..5a8b105f2faeb885d5e0ba07454ce3b47b99e2fe 100644 (file)
@@ -30,6 +30,14 @@ along with GNU Emacs.  If not, see <https://www.gnu.org/licenses/>.  */
 #include <webkit2/webkit2.h>
 #include <JavaScriptCore/JavaScript.h>
 
+/* Suppress GCC deprecation warnings starting in WebKitGTK+ 2.21.1 for
+   webkit_javascript_result_get_global_context and
+   webkit_javascript_result_get_value (Bug#33679).
+   FIXME: Use the JavaScriptCore GLib API instead, and remove this hack.  */
+#if WEBKIT_CHECK_VERSION (2, 21, 1) && GNUC_PREREQ (4, 2, 0)
+# pragma GCC diagnostic ignored "-Wdeprecated-declarations"
+#endif
+
 static struct xwidget *
 allocate_xwidget (void)
 {