C++ – gtk configure error – No package ‘atk-bridge-2.0’ found

cconfiguregtk

I'm trying to install gtk+-3.6.4

My configuration breaks with the following error:

checking Pango flags... -pthread -I/usr/local/include/glib-2.0 -I/usr/local/lib/glib-2.0/include -I/usr/include/pango-1.0 -I/usr/include/cairo -I/usr/include/pixman-1 -I/usr/include/freetype2 -I/usr/include/libpng12   -L/usr/local/lib -lpangocairo-1.0 -lpango-1.0 -lcairo -lgobject-2.0 -lglib-2.0  
checking for GDK_DEP... yes
checking for ATK... no
configure: error: Package requirements (atk atk-bridge-2.0) were not met:

No package 'atk-bridge-2.0' found

Consider adjusting the PKG_CONFIG_PATH environment variable if you
installed software in a non-standard prefix.

Alternatively, you may set the environment variables ATK_CFLAGS
and ATK_LIBS to avoid the need to call pkg-config.

I've already installed

sudo apt-get install libatk1.0*

Any idea how to fix this ?

Best Answer

I had the exact same error, in my case i used

sudo apt-get install libatk-bridge2.0

Take note i'm using Ubuntu, anyways the package you want is libatk-bridge2.0 if i'm correct.

Related Topic