| Linux - Enterprise This forum is for all items relating to using Linux in the Enterprise. |
| 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.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
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.
 |
GNU/Linux Basic Guide
This 255-page guide will provide you with the keys to understand the philosophy of free software, teach you how to use and handle it, and give you the tools required to move easily in the world of GNU/Linux. Many users and administrators will be taking their first steps with this GNU/Linux Basic guide and it will show you how to approach and solve the problems you encounter.
Click Here to receive this Complete Guide absolutely free. |
|
 |
07-04-2011, 09:56 PM
|
#1
|
|
Member
Registered: Jul 2011
Location: US and A.
Distribution: RHEL 6.1 & Ubuntu 10.04
Posts: 50
Rep: 
|
Wireshark compile error in RHEL 6.1
Fellow Penguin Lovers,
When compiling Wireshark 1.6.0, I get the following error: "configure:19488: error: GTK+ 2.4 or later isn't available, so Wireshark can't be compile." You may be asking why I'm doing this when RPMs are available. Welp, the RPM version of Wireshark flooded by WiFi connection requiring me to disconnect and then reconnect every time I ran Wireshark. No longer, I say!
Important points regarding the error:
1) GTK+ 2.18.9 is installed (gtk2-2.18.9-6.el6.x86_64.rpm)
2) GTK+ 2.18-devel is installed (gtk2-devel-2.18.9-6.el6.x86_64.rpm)
3) The above were downloaded and installed from the RHEL customer portal
4) My brain hurts
Please advise on why I'm getting this error when a newer version of GTK+ is installed and how I can fix it.
Thanks,
Alpo
---
Red Hat Enterprise Linux 6.1 64-bit
Intel i7 QuadCore
750GB Hard Drive
6GB SDRAM
Last edited by Alpo; 07-04-2011 at 10:16 PM.
|
|
|
|
|
Click here to see the post LQ members have rated as the most helpful post in this thread.
|
07-04-2011, 10:08 PM
|
#2
|
|
ReliaFree Maintainer
Registered: Aug 2004
Location: Kalamazoo, Michigan
Distribution: Slackware, Cross Linux from Scratch, Gentoo
Posts: 2,663
Rep: 
|
It is likely the configure script is looking for the file gtk+-2.0.pc. This should be installed by the gtk2 devel package. You need to make sure your PKG_CONFIG_PATH includes the directory containing gtk+-2.0.pc. There are default paths pkg-config looks in and, typically, gtk+-2.0.pc would be installed in one of those. On the other hand, maybe you don't have pkgconfig installed on your machine.
|
|
|
1 members found this post helpful.
|
07-04-2011, 10:15 PM
|
#3
|
|
Member
Registered: Jul 2011
Location: US and A.
Distribution: RHEL 6.1 & Ubuntu 10.04
Posts: 50
Original Poster
Rep: 
|
weibullguy,
Thanks for the reply. Pkgconfig is also installed (pkgconfig-0.23-9.1.el6.x86_64.rpm). I did a search for gtk+-2.0.pc and nothing turned up. Which file contains the PKG_CONFIG_PATH variable, and what is the default path for gtk+-2.0.pc?
Cheers,
Alpo
|
|
|
|
07-04-2011, 10:31 PM
|
#4
|
|
Member
Registered: Jul 2011
Location: US and A.
Distribution: RHEL 6.1 & Ubuntu 10.04
Posts: 50
Original Poster
Rep: 
|
weibullguy,
I found gtk+-2.0.pc in /usr/lib64/pkgconfig. Where/How do I edit PKG_CONFIG_PATH?
|
|
|
|
07-04-2011, 10:52 PM
|
#5
|
|
Member
Registered: Jul 2011
Location: US and A.
Distribution: RHEL 6.1 & Ubuntu 10.04
Posts: 50
Original Poster
Rep: 
|
weibullguy,
If I do an "export PKG_CONFIG_PATH=/usr/lib64/pkgconfig/" command, is that going to screw up the variable for future use?
|
|
|
|
07-05-2011, 07:18 AM
|
#6
|
|
LQ 5k Club
Registered: Jan 2008
Location: Copenhagen, DK
Distribution: pclos2012.8, Slack1337 DebSqueeze, +50+ other Linux OS, for test only.
Posts: 11,593
|
Quote:
|
If I do an "export PKG_CONFIG_PATH=/usr/lib64/pkgconfig/" command, ...
|
The export command is temporary : Works only until you exit the terminal.
( I would use this one :
export PKG_CONFIG_LIBDIR=/usr/lib64/pkgconfig )
..
Last edited by knudfl; 07-05-2011 at 07:21 AM.
|
|
|
1 members found this post helpful.
|
07-05-2011, 07:29 AM
|
#7
|
|
ReliaFree Maintainer
Registered: Aug 2004
Location: Kalamazoo, Michigan
Distribution: Slackware, Cross Linux from Scratch, Gentoo
Posts: 2,663
Rep: 
|
Quote:
Originally Posted by knudfl
( I would use this one :
export PKG_CONFIG_LIBDIR=/usr/lib64/pkgconfig )..
|
I wouldn't. This replaces the default search path, PKG_CONFIG_PATH adds additional directories that will be searched before the defaults. Overriding the defaults may fix the current problem, but it may cause others when building wireshark.
|
|
|
2 members found this post helpful.
|
07-05-2011, 08:27 AM
|
#8
|
|
Member
Registered: Jul 2011
Location: US and A.
Distribution: RHEL 6.1 & Ubuntu 10.04
Posts: 50
Original Poster
Rep: 
|
Dudes,
I did the export command and the installation was a success. How can I permanently add the /usr/lib64/pkgconfig to the PKG_CONFIG_PATH variable?
|
|
|
|
07-05-2011, 09:07 AM
|
#9
|
|
ReliaFree Maintainer
Registered: Aug 2004
Location: Kalamazoo, Michigan
Distribution: Slackware, Cross Linux from Scratch, Gentoo
Posts: 2,663
Rep: 
|
The easiest way is to add it to your ~/.bashrc or ~/.bash_profile file. Just add exactly what you typed in the CLI to one of those files. No need to be root because you shouldn't be configuring and compiling as root anyway.
|
|
|
1 members found this post helpful.
|
07-05-2011, 04:39 PM
|
#10
|
|
Member
Registered: Jul 2011
Location: US and A.
Distribution: RHEL 6.1 & Ubuntu 10.04
Posts: 50
Original Poster
Rep: 
|
weibullguy,
What are the downsides of configuring/compiling as root?
|
|
|
|
07-05-2011, 10:39 PM
|
#11
|
|
ReliaFree Maintainer
Registered: Aug 2004
Location: Kalamazoo, Michigan
Distribution: Slackware, Cross Linux from Scratch, Gentoo
Posts: 2,663
Rep: 
|
Borking your entire system. That's the downside of doing ANYTHING you don't understand as root. Unless you do a line by line review of the configure script, the Makefile, and the source code to make sure it won't do something nasty, then you really don't understand. The only thing you have to do as root is install system-wide. Of course, you can always install in your $HOME directory and then you don't need to be root even for that.
|
|
|
1 members found this post helpful.
|
07-06-2011, 07:38 PM
|
#12
|
|
Member
Registered: Jul 2011
Location: US and A.
Distribution: RHEL 6.1 & Ubuntu 10.04
Posts: 50
Original Poster
Rep: 
|
As long as I'm logged into another account and just using the "su" command, will I be ok?
|
|
|
|
08-01-2011, 08:52 AM
|
#13
|
|
ReliaFree Maintainer
Registered: Aug 2004
Location: Kalamazoo, Michigan
Distribution: Slackware, Cross Linux from Scratch, Gentoo
Posts: 2,663
Rep: 
|
Sorry, didn't see that you had posted again.
No, you won't be OK "just" using the su command (assuming you are su-ing to the root account).
|
|
|
|
| Thread Tools |
Search this Thread |
|
|
|
Posting Rules
|
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
HTML code is Off
|
|
|
All times are GMT -5. The time now is 02:09 AM.
|
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|