On 2010-09-20 21:46:38 -0400, Kevin McKinney wrote: > checking what language compliance flags to pass to the C compiler... > checking for GNOME_DEVICE_MANAGER... configure: error: Package > requirements (libgnome-2.0 >= 2.14.0 > libgnomeui-2.0 >= 2.14.0 > gtk+-2.0 >= 2.6.0 > hal >= 0.5.10) were not met: > > No package 'libgnome-2.0' found > No package 'libgnomeui-2.0' found > No package 'gtk+-2.0' found > No package 'hal' found
This doesn't refer to package names as used by apt but to names as used by pkg-config. It checks if a such named .pc file exists in /usr/lib/pkg-config and if their dependencies (other .pc files) are also there. 'libgnome-2.0': /usr/lib/pkgconfig/libgnome-2.0.pc → libgnome2-dev 'libgnomeui-2.0': /usr/lib/pkgconfig/libgnomeui-2.0.pc → libgnomeui-dev 'gtk+-2.0': /usr/lib/pkgconfig/gtk+-2.0.pc → libgtk2.0-dev 'hal': /usr/lib/pkgconfig/hal.pc → libhal-dev Michael -- Ubuntu-motu mailing list [email protected] Modify settings or unsubscribe at: https://lists.ubuntu.com/mailman/listinfo/ubuntu-motu
