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.
Posting comments as response:
From
find /usr/ -iname "*glib*.pc"it is found that there.pcfile related toglibis available in/usr/lib/pkgconfig&/usr/local/lib/pkgconfig. Checking the system package management it appears that version2.26.1is installed from the repositories. The path for installation ofglibfrom repositories is generally/usr/lib(This may vary a bit in case of 64 bit systems wherein there are different folders for 32 bit & 64 bit libraries). Thus it appears thatglibalso has been installed from source (guessing by installation path/usr/local/lib) which of version2.32.2. If you need version2.32.2setPKG_CONFIG_PATHto/usr/local/lib/pkgconfig&LD_LIBRARY_PATHto/usr/local/lib/Hope this helps!