mirror of
https://github.com/ZoiteChat/zoitechat.git
synced 2026-03-10 07:50:19 +00:00
narrowing the GDK include guard to #if defined(HAVE_GTK3), and
removing legacy HAVE_GTK2 / HAVE_GTK toolkit label branches from sysinfo_detect_toolkit(),
narrowing GDK display probing guard in sysinfo_detect_display_backend() to GTK3-only.
Updated Windows and macOS sysinfo backends to remove HAVE_GTK2 / HAVE_GTK fallback labels so sysinfo_detect_toolkit() now returns only "GTK3" (or NULL).
Updated API docs for sysinfo_backend_get_ui() to remove the outdated "GTK2 / X11" example so comments match runtime behavior.
Removed the deprecated Meson option option('gtk3', ... deprecated: true) from meson_options.txt, leaving gtk-frontend/text-frontend options intact.
Removed -Dgtk3=true from Debian’s Meson configure flags in debian/rules (override_dh_auto_configure).
Removed remaining active -Dgtk3=true packaging consumers in Flatpak config:
dropped it from config-opts
dropped -Dgtk3=true from cflags.
Removed -Dgtk3=true from Solus packaging Meson configure args.
Committed changes on the current branch (e018bfd) and created a PR record via the make_pr tool.
23 lines
653 B
Makefile
Executable File
23 lines
653 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
|
|
export DH_VERBOSE=1
|
|
|
|
%:
|
|
dh $@ --buildsystem=meson
|
|
|
|
override_dh_auto_configure:
|
|
dh_auto_configure -- \
|
|
-Dinstall-plugin-metainfo=false \
|
|
-Dwith-lua=lua53
|
|
|
|
override_dh_installchangelogs:
|
|
install -m0755 -d \
|
|
debian/zoitechat/usr/share/doc/zoitechat \
|
|
debian/zoitechat-common/usr/share/doc/zoitechat-common \
|
|
debian/zoitechat-perl/usr/share/doc/zoitechat-perl \
|
|
debian/zoitechat-python3/usr/share/doc/zoitechat-python3 \
|
|
debian/zoitechat-lua/usr/share/doc/zoitechat-lua \
|
|
debian/zoitechat-plugins/usr/share/doc/zoitechat-plugins \
|
|
debian/zoitechat-dev/usr/share/doc/zoitechat-dev
|
|
dh_installchangelogs changelog.rst
|