Monday, April 29, 2024
1
rated 0 times [  1] [ 0]  / answers: 1 / hits: 1763  / 2 Years ago, thu, october 6, 2022, 11:09:42

i'm not able to build gtkparasite



when i run:



./autogen.sh


i'm get this error



checking for GTK... no
configure: error: Package requirements (gtk+-3.0 >= 3.10.0 gtksourceview-3.0) were not met:

Requested 'gtk+-3.0 >= 3.10.0' but version of GTK+ is 3.6.1
Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.
Alternatively, you may set the environment variables GTK_CFLAGS
and GTK_LIBS to avoid the need to call pkg-config.
See the pkg-config man page for more details.


So, when i do:



echo $PKG_CONFIG_PATH


it show me a blank, line so i adjust it with:



$ locate pkg-config
/etc/bash_completion.d/pkg-config
/usr/bin/pkg-config
/usr/lib/python2.7/dist-packages/numpy/core/lib/npy-pkg-config
...........
$ export PKG_CONFIG_PATH=/usr/bin/pkgconfig


but the error persist.



How I can do to build this sources?


More From » application-development

 Answers
7

Requested 'gtk+-3.0 >= 3.10.0' but version of GTK+ is 3.6.1




The program needs at least GTK+ v3.10 but you only have GTK+ v3.6.1



Ubuntu 14.04 will have GTK+ v.3.10. For other version of Ubuntu you need to either find a PPA or other unofficial packages for GTK+ v3.10 or compile it yourself, too (which includes compiling some more libs needed by GTK+).


[#27670] Friday, October 7, 2022, 2 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
restlerfin

Total Points: 347
Total Questions: 112
Total Answers: 108

Location: Ukraine
Member since Wed, Dec 16, 2020
3 Years ago
;