The "configure" script of the source package says the following about gcdmaster:
checking for gtkmm-2.0 >= 2.2... Package gtkmm-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gtkmm-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gtkmm-2.0' found
Building of gcdmaster disabled
I do have both gtkmm-1.2.9 and gtkmm-2.4.1 installed, and the file "/usr/lib/pkgconfig/gtkmm-2.4.pc" exists. Can someone tell me how to fix?
Stephen
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
The "configure" script of the source package says the following about gcdmaster:
checking for gtkmm-2.0 >= 2.2... Package gtkmm-2.0 was not found in the pkg-config search path.
Perhaps you should add the directory containing `gtkmm-2.0.pc'
to the PKG_CONFIG_PATH environment variable
No package 'gtkmm-2.0' found
Building of gcdmaster disabled
I do have both gtkmm-1.2.9 and gtkmm-2.4.1 installed, and the file "/usr/lib/pkgconfig/gtkmm-2.4.pc" exists. Can someone tell me how to fix?
Stephen
try
export PKG_CONFIG_PATH=/usr/lib/pkgconfig/gtkmm-2.4.pc
if it still doesn't work, try looking at the end of config.log to see what's failing.
Unfortunately, you don't have the right version installed.
gtkmm-1.2 is the old Gtk1.2 API, and gtkmm-2.4 is the brand new 2.4 API. You want to install gtkmm 2.2.x, which is the 2.0 API.
You can still compile gcdmaster with gtkmm-2.4, but you'll have to check out the 'gtkmm24' branch from the CVS tree.
-denis
Thanks for the help. I needed both gtkmm 2.2.x and gconfmm-2.0.x for this to work. Now to pass this on to the Gentoo folks ...
Stephen