diff options
| author | Colomban Wendling <[email protected]> | 2025-11-05 16:31:50 +0100 |
|---|---|---|
| committer | Oz Tiram <[email protected]> | 2025-12-23 06:44:55 +0100 |
| commit | 46997f7337803637f52a246c07de90500b3ef1d2 (patch) | |
| tree | 5582aa9f3bb141d3346763005852556c8e65e845 /backend | |
| parent | 1abec2205733072cbe99cf6951703be5f0d972ad (diff) | |
| download | atril-46997f7337803637f52a246c07de90500b3ef1d2.tar.bz2 atril-46997f7337803637f52a246c07de90500b3ef1d2.tar.xz | |
meson: Replace backend boolean options with features
This allows enabling the backend automatically depending on whether the
dependencies are satisfied or not, like Autotool's counterpart.
By default, the PDF backend is force-enabled and the Pixbuf backend is
disabled, as with Autotools.
Diffstat (limited to 'backend')
| -rw-r--r-- | backend/dvi/meson.build | 2 | ||||
| -rw-r--r-- | backend/ps/meson.build | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/backend/dvi/meson.build b/backend/dvi/meson.build index 8b4d0ed0..98abf454 100644 --- a/backend/dvi/meson.build +++ b/backend/dvi/meson.build @@ -15,7 +15,7 @@ dvi_deps = [ gtk, libmdvi_dep, math, - spectre, + spectre_dvi, mdvi_deps, ] diff --git a/backend/ps/meson.build b/backend/ps/meson.build index ba8ea301..93eef1f2 100644 --- a/backend/ps/meson.build +++ b/backend/ps/meson.build @@ -7,7 +7,7 @@ ps_deps = [ cairo, glib, gtk, - spectre, + spectre_ps, ] shared_module( |
