Changeset 155509 in webkit
- Timestamp:
- Sep 11, 2013, 1:15:20 AM (11 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/ChangeLog
r155475 r155509 1 2013-09-11 Zan Dobersek <zdobersek@igalia.com> 2 3 [GTK] Stop disabling deprecated symbols in debug builds 4 https://bugs.webkit.org/show_bug.cgi?id=121145 5 6 Reviewed by Carlos Garcia Campos. 7 8 Disabling the dependencies' deprecated symbols in debug builds is only causing unnecessary 9 build failures. Compiler warnings are being thrown whenever a deprecated symbol is being 10 used, so a build failure is an overreach in this case. 11 12 * Source/autotools/SetupAutoconfHeader.m4: 13 1 14 2013-09-10 Marcelo Morais <m.morais@samsung.com> 2 15 -
trunk/Source/autotools/SetupAutoconfHeader.m4
r155032 r155509 2 2 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [The gettext catalog name]) 3 3 4 if test "$enable_debug" = "yes"; then 5 AC_DEFINE([GDK_PIXBUF_DISABLE_DEPRECATED], [1], [ ]) 6 AC_DEFINE([GDK_DISABLE_DEPRECATED], [1], [ ]) 7 AC_DEFINE([GTK_DISABLE_DEPRECATED], [1], [ ]) 8 AC_DEFINE([PANGO_DISABLE_DEPRECATED], [1], [ ]) 9 else 4 if test "$enable_debug" = "no"; then 10 5 AC_DEFINE([NDEBUG], [1], [Define to disable debugging]) 11 6 fi … … 60 55 if test "$enable_video" = "yes" || test "$enable_web_audio" = "yes"; then 61 56 AC_DEFINE([WTF_USE_GSTREAMER], [1], [ ]) 62 if test "$enable_debug" = "yes"; then63 AC_DEFINE([GST_DISABLE_DEPRECATED], [1], [ ])64 fi65 57 fi 66 58
Note:
See TracChangeset
for help on using the changeset viewer.