FedoraThis forum is for the discussion of the Fedora Project.
Notices
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
FC8-x86_64
Trying to compile a efax-gtk app and I'm getting a error message.
What pkg-config command would I run to fix things ??
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for gawk... gawk
checking whether make sets $(MAKE)... yes
checking for style of include used by make... GNU
checking for gcc... gcc
checking for C compiler default output file name... a.out
checking whether the C compiler works... yes
checking whether we are cross compiling... no
checking for suffix of executables...
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking dependency style of gcc... gcc3
checking how to run the C preprocessor... gcc -E
checking whether gcc supports -pthread... no
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... gcc3
checking how to run the C++ preprocessor... g++ -E
checking whether g++ supports -fexceptions... yes
checking whether g++ supports -frtti... yes
checking whether g++ supports -fsigned-char... yes
checking whether g++ supports -fno-check-new... yes
checking whether g++ supports -pthread... yes
checking for a BSD-compatible install... /usr/bin/install -c
checking for pkg-config... /usr/bin/pkg-config
checking for glib-2.0 >= 2.0.0... yes
checking GLIB_CFLAGS... -I/usr/include/glib-2.0 -I/usr/lib64/glib-2.0/include
checking GLIB_LIBS... -lglib-2.0
checking for gtk+-2.0 >= 2.0.0... no
configure: error: Library requirements (gtk+-2.0 >= 2.0.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.
install the gtk2-devel package through yum. but i assume efax-gtk is available in yum already anyway, so just run "yum install efax-gtk" and forget about compiling software altogether for now. (yum package name may vary i guess...)
checking for gtk+-2.0 >= 2.0.0... no
configure: error: Library requirements (gtk+-2.0 >= 2.0.0) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.
You are missing Gtk+, or your Gtk+ version is less than 2. These ./configure messages can be ambiguous about whether you are missing the source or the binary version of the package that it is complaining about. You can check what Gtk packages you do have installed with:
You are missing Gtk+, or your Gtk+ version is less than 2. These ./configure messages can be ambiguous about whether you are missing the source or the binary version of the package that it is complaining about. You can check what Gtk packages you do have installed with:
rpm -qa | grep gtk | sort | less
------------------
Steve Stites
not true, he's missing the C headers for the library, not the library itself necessarily. the chances of not already having a perfectly capable gtk2 installed on fc8 are next to zero.
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.