I am trying to install atk-2.4.0
and I get the error:
'pkg-config --modversion glib-2.0' returned 2.32.3, but GLIB (2.26.1)
*** was found!
I also tried updating PKG_CONFIG_PATH
to include the path of glib-2.0.pc
but still same error appears. Could anyone help me how to find where 2.26.1 was installed I am relatively new to Ununtu? Thanks.
find /usr/ -iname "*glib*.pc"
? Anddpkg -l libglib2.0-dev
? – Cuppingdpkg -l libglib2.0-dev Desired=Unknown/Install/Remove/Purge/Hold | Status=Not/Inst/Conf-files/Unpacked/halF-conf/Half-inst/trig-aWait/Trig-pend |/ Err?=(none)/Reinst-required (Status,Err: uppercase=bad) ||/ Name Version Description +++-==============-==============-============================================ ii libglib2.0-dev 2.26.1-0ubuntu Development files for the GLib library
– Marniefind /usr/ -iname "*glib*.pc" /usr/local/lib/pkgconfig/glib-2.0.pc /usr/lib/pkgconfig/glib-sharp-2.0.pc /usr/lib/pkgconfig/glib-2.0.pc
– Marnieglib
version2.26.1
installed through Ubuntu repositories but also you have installed version2.32.2
from source (this is a guess based on the path being/usr/local/
which is the default configured path. So which version ofglib
do you need to use? What have you setPKG_CONFIG_PATH
&LD_LIBRARY_PATH
as? – CuppingPKG_CONFIG_PATH
to/usr/local/lib/pkgconfig
and wasn't sure what to setLD_LIBRARY_PATH
to. I am still getting the same error message. – Marnie2.32.2
setPKG_CONFIG_PATH
to/usr/local/lib/pkgconfig
(which you have) &LD_LIBRARY_PATH
to/usr/local/lib/
– Cupping