diff options
author | Benjamin Otte <otte.benjamin@googlemail.com> | 2022-02-16 18:49:29 +0000 |
---|---|---|
committer | Benjamin Otte <otte.benjamin@googlemail.com> | 2022-02-16 18:49:29 +0000 |
commit | 219a6b6de00e240fd70c396786c57922d5e42488 (patch) | |
tree | 63e029153cf82c223a425e5c5a66619ecc0e5e8c | |
parent | 2bea237f786265391dfb48d4216073630699afb0 (diff) | |
download | pango-219a6b6de00e240fd70c396786c57922d5e42488.tar.gz |
Enable Cairo by default
Most builds of Pango want cairo enabled.
So it seems better to enable it by default and throw an error than to silently disable it, and make the few people who do want it disabled pass a flag to meson.
Related gtk!4487
-rw-r--r-- | meson_options.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson_options.txt b/meson_options.txt index 235b8a48..58200e00 100644 --- a/meson_options.txt +++ b/meson_options.txt @@ -25,7 +25,7 @@ option('libthai', description : 'Build with libthai support') option('cairo', type : 'feature', - value : 'auto', + value : 'enabled', description : 'Build with cairo support') option('xft', type : 'feature', |