poppler 0.5.4 is looking for 'glib.pc' in the PKG_CHECK_MODULES code. This breaks the build on my system: checking for POPPLER_GLIB... sh: glib-config: not found sh: glib-config: not found sh: glib-config: not found configure: error: Package requirements (gdk-2.0 >= 2.4.0 glib >= 2.6) were not met: Requested 'glib >= 2.6' but version of GLib is . Changing the code to look for glib-2.0.pc makes it work. - PKG_CHECK_MODULES(POPPLER_GLIB, gdk-2.0 >= 2.4.0 glib >= 2.6) + PKG_CHECK_MODULES(POPPLER_GLIB, gdk-2.0 >= 2.4.0 glib-2.0 >= 2.6) Attached patch makes this change.
Created attachment 7349 [details] [review] Change module check from glib to glib-2.0.
Bug is fixed in 0.5.9. Closing.
Use of freedesktop.org services, including Bugzilla, is subject to our Code of Conduct. How we collect and use information is described in our Privacy Policy.