Correctly configure GTK3 to reflect recomended stable release settings (#4211)

* Correctly configure GTK3 to reflect recomended release settings

GTK/Glib packaging guidelines recomends a release build to use debugging
facilities set to level 'minimum'. Disabling this is officially not
recomended for stable releases. For more info read the following link,
the section `--enable-debug`.

https://developer.gnome.org/glib/stable/glib-building.html#extra-configuration-options

* [gtk] Bump control version
This commit is contained in:
Danny Angelo Carminati Grein 2018-10-24 15:45:09 -04:00 committed by Robert Schumacher
parent fed89a9625
commit be7cd68773
2 changed files with 5 additions and 2 deletions

View File

@ -76,8 +76,11 @@ add_definitions(
-DGTK_DISABLE_SINGLE_INCLUDES
-D_USE_MATH_DEFINES)
add_definitions(-DG_ENABLE_DEBUG)
if(CMAKE_BUILD_TYPE STREQUAL Debug)
add_definitions(-DG_ENABLE_DEBUG)
add_definitions(-DG_ENABLE_CONSISTENCY_CHECKS)
else()
add_definitions(-DG_DISABLE_CAST_CHECKS)
endif()
macro(extract_vcproj_sources VC_PROJECT OUT_VAR)

View File

@ -1,4 +1,4 @@
Source: gtk
Version: 3.22.19-1
Version: 3.22.19-2
Description: Portable library for creating graphical user interfaces.
Build-Depends: glib, atk, gdk-pixbuf, pango, cairo, libepoxy, gettext