build: Don't try to use pangowin32 in deps

It's no longer there for Pango2.
This commit is contained in:
Chun-wei Fan
2022-06-30 14:54:01 +08:00
parent f7c4b26c59
commit c79b4e2e56
3 changed files with 2 additions and 4 deletions

View File

@@ -54,7 +54,6 @@ if have_egl
endif
gdk_win32_deps = [
pangowin32_dep, # FIXME
cc.find_library('hid'),
]

View File

@@ -1141,7 +1141,7 @@ endif
if win32_enabled
gtk_cargs += ['-DGTK_PRINT_BACKENDS="file,lpr"']
gtk_deps += [ giowin32_dep, pangowin32_dep ]
gtk_deps += [ giowin32_dep ]
gtk_deps += [
cc.find_library('advapi32'),

View File

@@ -780,9 +780,8 @@ configure_file(output: 'config.h',
configuration: cdata)
# Requires
pango_pkgname = win32_enabled ? 'pangowin32' : 'pango'
gdk_packages = [
'@0@ @1@'.format(pango_pkgname, pango_req),
'pango @0@'.format(pango_req),
'pangocairo @0@'.format(pango_req),
'gdk-pixbuf-2.0 @0@'.format(gdk_pixbuf_req),
]