From e26bdbda9b23d95fe6fbcceb54dee2140dd78cef Mon Sep 17 00:00:00 2001 From: Chun-wei Fan Date: Mon, 9 Jun 2014 12:44:46 +0800 Subject: [PATCH] MSVC Builds: Update Introspection Build The a11y headers are now listed with the main Makefile.am of GTK, and GDK introduced deprecated headers, so we need to account for them for the build of the introspection files. --- build/gen-file-list-gtk.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/build/gen-file-list-gtk.py b/build/gen-file-list-gtk.py index f25cf4ae50..045f860e9d 100644 --- a/build/gen-file-list-gtk.py +++ b/build/gen-file-list-gtk.py @@ -14,7 +14,7 @@ def gen_gdk_filelist(srcroot, subdir, dest): vars = read_vars_from_AM(os.path.join(srcroot, subdir, 'Makefile.am'), vars = {}, conds = {}, - filters = ['gdk_public_h_sources', 'gdk_c_sources']) + filters = ['gdk_h_sources', 'gdk_c_sources']) vars['gdk_enums'] = 'gdkenumtypes.c gdkenumtypes.h' @@ -49,6 +49,7 @@ def gen_gtk_filelist(srcroot, subdir, dest): 'USE_X11': False, 'USE_EXTERNAL_ICON_CACHE': False}, filters = ['gtkinclude_HEADERS', + 'a11yinclude_HEADERS', 'deprecatedinclude_HEADERS', 'gtk_base_c_sources', 'gtk_clipboard_dnd_c_sources']) @@ -56,6 +57,7 @@ def gen_gtk_filelist(srcroot, subdir, dest): vars['gtk_other_src'] = 'gtkprintoperation-win32.c gtktypebuiltins.h gtktypebuiltins.c' files = vars['gtkinclude_HEADERS'].split() + \ + vars['a11yinclude_HEADERS'].split() + \ vars['deprecatedinclude_HEADERS'].split() + \ vars['gtk_base_c_sources'].split() + \ vars['gtk_clipboard_dnd_c_sources'].split() + \