LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 07-14-2009, 03:26 AM   #1
JZL240I-U
Senior Member
 
Registered: Apr 2003
Location: Germany
Distribution: openSuSE Tumbleweed-KDE, Mint 21, MX-21, Manjaro
Posts: 4,629

Rep: Reputation: Disabled
./configure gparted error: requires libparted >=1.7.1...but libparted1.8.so.8 exists


Well, the subject says it all. I don't get over the ./configure step when I try to compile gparted0.4.3. There is also an libparted1.8.so.8.0.0 besides libparted1.8.so.8 in /usr/lib and I copied both from /usr/lib to /lib, just to be on the secure side. I also tried to pass libparted1.8.so.8 with the „-l“ parameter
Code:
./configure -l /lib/libparted1.8.so.8
and got a configure error „unrecognized option“ .

This is on SuSE 11.0 with kernel 2.6.25.5-1.1-pae. The development headers are installed. Any idea?

Last edited by JZL240I-U; 07-14-2009 at 10:58 AM.
 
Old 07-14-2009, 03:40 AM   #2
micxz
Senior Member
 
Registered: Sep 2002
Location: CA
Distribution: openSuSE, Cent OS, Slackware
Posts: 1,131

Rep: Reputation: 75
Have you seen this thread: (may or may not help)

http://gparted-forum.surf4.info/view...pid=5171#p5171

Last edited by micxz; 07-14-2009 at 12:13 PM.
 
Old 07-14-2009, 03:45 AM   #3
business_kid
LQ Guru
 
Registered: Jan 2006
Location: Ireland
Distribution: Slackware, Slarm64 & Android
Posts: 16,260

Rep: Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322Reputation: 2322
./configure --help
I think you want to know about
./configure --libexecdir=
But /lib and /usr/lib are checked automatically.

Just run ./configure, and post the end from a few lines before the first error

Last edited by business_kid; 07-14-2009 at 03:45 AM. Reason: I'm a twit.
 
Old 07-14-2009, 03:59 AM   #4
colucix
LQ Guru
 
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509

Rep: Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983
Quote:
Originally Posted by JZL240I-U View Post
Code:
./configure -l /lib/libparted1.8.so.8
and got a configure error „unrecognized option“ .
There is no -l option to configure. The correct way to do (usually) is:
Code:
$ export LIBS=-lparted
$ ./configure
that is the -l option will be passed to the linker. Option -l accepts the name of a library without the prefix "lib" and without the version number. Have you the proper links to the libparted library in /lib? Please, can you post the output of
Code:
ls -l /lib/libparted*
 
Old 07-14-2009, 04:07 AM   #5
colucix
LQ Guru
 
Registered: Sep 2003
Location: Bologna
Distribution: CentOS 6.5 OpenSuSE 12.3
Posts: 10,509

Rep: Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983Reputation: 1983
Quote:
Originally Posted by JZL240I-U View Post
This is on SuSE 11.0 with kernel 2.6.25.5-1.1-pae.
If you enable the Packman repository, you can install the binary package of gparted (no need to compile from source).
 
Old 07-14-2009, 05:21 AM   #6
JZL240I-U
Senior Member
 
Registered: Apr 2003
Location: Germany
Distribution: openSuSE Tumbleweed-KDE, Mint 21, MX-21, Manjaro
Posts: 4,629

Original Poster
Rep: Reputation: Disabled
@micxz That's a solution for debian based systems, SuSE is rpm, but thanks anyhow.

@business_kid Here you are:
Code:
checking for XML::Parser... ok
checking for uuid_generate in -luuid... yes
checking for dlopen in -ldl... yes
checking for libparted >= 1.7.1... configure: error: *** Requires libparted >= 1.7.1.  Perhaps development header files missing?
help says libexecdir determines the place for program executables...

@colucix Well, help said there is an "l" option but ./configure throws an error when I use it . Here is the output you wanted:
Code:
ls -l /lib/libparted*
lrwxrwxrwx 1 root root     22  9. Jul 16:22 /lib/libparted-1.8.so.8 -> libparted-1.8.so.8.0.0
-rwxr-xr-x 1 root root 407756  6. Jun 2008  /lib/libparted-1.8.so.8.0.0
That of any help? Concerning the use of repositories, I have a 56k modem only and a line with connection rates around 1 kB/sec...

Last edited by JZL240I-U; 07-29-2009 at 08:50 AM.
 
  


Reply



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
configure: error: GRUB requires a working absolute objcopy; upgrade your binutils The00Dustin Linux - Software 13 04-12-2018 01:00 AM
cant install fdisk error: "libparted >= 1.7.0 not installed - please install first" ashes_sheldon Linux - Hardware 4 05-15-2009 06:42 AM
configure: error: GRUB requires a working absolute objcopy; upgrade your binutils kcoriginal Linux - Software 11 11-11-2008 02:34 AM
Adobe Acrobate Reader Requires A Plugin-That Requires Open LDAP That Requires Berkely Old_Fogie Slackware 10 05-08-2006 05:04 AM
Libparted Mahony Linux - General 0 04-07-2004 01:13 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 11:06 PM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration