- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- how to set variables
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2005 11:04 PM
05-20-2005 11:04 PM
how to set variables
I am trying to install xmms-1.2.10 .
when I ./configure it , it shows that I have to upgrade my glib version to 1.2.2 . as i have glib-1.2.10.
I downloaded glib-2.0.0 in the /root directory.
& installed it there in the /root/glib-2.0.0 directory.
Now when i try to install xmms-1.2.10 it shows me the following error
checking for GLIB - version >= 1.2.2... no
*** The glib-config script installed by GLIB could not be found
*** If GLIB was installed in PREFIX, make sure PREFIX/bin is in
*** your path, or set the GLIB_CONFIG environment variable to the
*** full path to glib-config.
configure: error: *** GLIB >= 1.2.2 not installed - please install first ***
ANY KIND OF HELP WILL BE APPRECIATED.
THANKS & REGARDS
Shyam Singh Bisht
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-20-2005 11:21 PM
05-20-2005 11:21 PM
Re: how to set variables
export PATH=$PATH:/root/glib-2.0.0/bin
Let us know if it works.
Alex.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-22-2005 11:18 PM
05-22-2005 11:18 PM
Re: how to set variables
Thanks for the reply
I have checked the directory /root/glib-2.0.0
but there is no bin there.
any other suggetion !
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2005 01:13 AM
05-23-2005 01:13 AM
Re: how to set variables
I believe this is what you did to to install glib
* untarred glib to /root
* change directory to /root/glib-2.0.0
* did configure and make and make install
if so, then your glib is installed with PREFIX /usr/local whic is default and which also is not in path by default. or did you run configure --prefix=/root/ if so then glib is installed in /root
to avoid this problem there are two methods, either you add /usr/local/lib /usr/local/bin /usr/local/share in search path for binary, libraries and include. or simply recompile glib as follows
* delete existing /root/glib-2.0.0
* untar glib freshly, it will create in /root/glib-2.0.0
* change to this directory
* run, configure --prefix=/usr
* make
* make install
* ldconfig (just to refresh libraries database)
After this try compiling xmms and it should find glib this time
Regards,
Gopi
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-23-2005 03:12 AM
05-23-2005 03:12 AM
Re: how to set variables
To locate the installation:
updatedb
locate glib
You will get all the files with glib in them, try to locate the bin directory and set it in PATH variable.
Alex.