summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2020-06-18 14:21:09 -0700
committerDylan Baker <dylan@pnwbakers.com>2020-06-18 14:21:09 -0700
commit9b49f4e08751885289333fed652bf5e0f45976b4 (patch)
tree2f9686b5b3483e263918c6d6e62582a952aaab7d
parent606f5c15b0e7959087e1a22c8d9f594afaf1ead0 (diff)
downloadpixman-9b49f4e08751885289333fed652bf5e0f45976b4.tar.gz
meson: remove pixman dependency
AFAICT from the git history, what happened is that the gtk demos rely on gtk being built with pixman support. pkg-config isn't really expressive enough to have that information, so the solution that was come up with was to search for pixman as well as gtk+ and hope that pixman being installed was. This isn't actually used anywhere in the meson build anyway, and it's causing problems for projects that want to use pixman as a supproject (there's a port of cairo underway that's hitting this), because it confuses meson.
-rw-r--r--meson.build2
1 files changed, 0 insertions, 2 deletions
diff --git a/meson.build b/meson.build
index 72ad8b9..1276ce4 100644
--- a/meson.build
+++ b/meson.build
@@ -398,8 +398,6 @@ endif
dep_gtk = dependency('gtk+-2.0', version : '>= 2.16', required : get_option('gtk'))
dep_glib = dependency('glib-2.0', required : get_option('gtk'))
-dep_pixman = dependency('pixman-1', required : get_option('gtk'),
- version : '>= ' + meson.project_version())
dep_png = null_dep
if not get_option('libpng').disabled()