On Sun, 2005-07-24 at 22:03 -0700, Antonio Olivares wrote: > > --- Dave Gutteridge <dave@xxxxxxxxxxxxxxx> wrote: > > > > > I am trying to configure and make a driver (wacom) > > which seems to > > require something called "GTK". I looked around the > > internet for what it > > is and if there were RPMs I could download. However, > > I couldn't > > determine exactly what it was. It seems to have > > something to do with > > Xorg, and I thought I saw there was a YUM repository > > called > > xorg-x11-sdk, but I'm a bit confused. Is GTK a > > development environment > > for the Gnome desktop? > > > > The wacom driver builder will not make a wacom.o or > > wacom.ko file > > without GTK, or so it seems. > > > > Dave > > > > -- > > fedora-list mailing list > > fedora-list@xxxxxxxxxx > > To unsubscribe: > > http://www.redhat.com/mailman/listinfo/fedora-list > > > > GTK+ is a multi-platform toolkit for creating > graphical user interfaces. Offering a complete set of > widgets, GTK+ is suitable for projects ranging from > small one-off projects to complete application suites. > > Source: http://www.gtk.org/ > > you may download it(source) from > http://www.gtk.org/download/ > > or get it via yum as root user > # yum install gtk > > which should work taking care of dependencies that may > occur. In the case that the latter yum command is > wrong, someone on the list will hopefully correct me There is no "gtk" package; it's called "gtk+" (for version 1), or "gtk2" (for version 2, the current version). GTK is the toolkit that the Gnome environment is built around. It's also almost certainly already installed on just about every Fedora box in the world that hasn't been done with a "minimal" or cut-down server install. If you're trying to build software, what you'll be missing is the "development" files, required for software development. Depending on whether the project you are building requires version 1 or version 2 of the GTK toolkit, you'll be needing to do either: # yum install gtk+-devel or # yum install gtk2-devel Paul. -- Paul Howarth <paul@xxxxxxxxxxxx>