If you read more carefully, the excerpt you show here has all the answers. First, the configuration script keeps running after failing the test for bprintf(), meaning that it is optional (or even, occasionally, that its presence would have made building impossible, or necessitate work-arounds of some sort.) Second, if you're still interested in where bprintf() can be located: -lsnmp is a flag that gets passed to the compiler, and then on to the linker, telling it to link to one libsnmp.so (so: shared object; like a DLL on Windows,) so you can infer from this part of the configuration script that bprintf() is being looked for in "libsnmp" (sorry I can't tell you more, I don't know what libsnmp might be.) The reason the configuration step for GTK is failing is because it couldn't find your GTK installation (or at least one part of it.) It's likely that one of the following things has occurred: - You have not installed GTK (perhaps you only built it; to install the build you may have made, try "sudo make install" or just "make install" as root.) - You have installed GTK to your home directory. In this case, you'll need to alter your shell's command search path which can be found in your PATH environment variable. Try "export PATH=/home/username/path/to/gtk/installation/root/bin:$PATH" and then run "./configure" again. Remember that if you exit the shell after modifying your PATH environ on the commandline, your modified PATH environ will revert to its old value the next time you start a shell (or, for that matter, if you start another shell.) - You have installed GTK to an alternate destination directory like /usr/local or /opt. This situation is similar to the one above, and you only need to modify your PATH environ to fix the problem. In either case, running commands like "locate gtk-config" or the slower (but more accurate) "find / -name gtk-config" will help you find where it's been installed. Good luck! And happy new year! On Dec 31, 2007 6:18 PM, John Ackley <john@xxxxxxxxxx> wrote: > where is bprintf and > > trying to compile mbrowse-0.3.1 on > Fedora 7 > yum list gtk+ > gtk+.i386 1:1.2.10-57.fc7 > > configure complains > > checking for bprintf in -lsnmp... no > checking for gtk-config... no > checking for GTK - version >= 1.2.0... no > *** The gtk-config script installed by GTK could not be found > *** If GTK was installed in PREFIX, make sure PREFIX/bin is in > *** your path, or set the GTK_CONFIG environment variable to the > *** full path to gtk-config. > configure: error: Cannot find GTK: Is gtk-config in path? > > > > _______________________________________________ > gtk-list mailing list > gtk-list@xxxxxxxxx > http://mail.gnome.org/mailman/listinfo/gtk-list > > -- http://www.socsurveys.org/ http://blogger.socsurveys.org/ http://del.icio.us/hdon _______________________________________________ gtk-list mailing list gtk-list@xxxxxxxxx http://mail.gnome.org/mailman/listinfo/gtk-list