LinuxQuestions.org
Welcome to the most active Linux Forum on the web.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie
User Name
Password
Linux - Newbie This Linux forum is for members that are new to Linux.
Just starting out and have a question? If it is not in the man pages or the how-to's this is the place!

Notices


Reply
  Search this Thread
Old 09-06-2003, 11:40 PM   #1
J_Bone
Member
 
Registered: Aug 2003
Location: Vancouver, Canada
Distribution: Mandrake 9.1
Posts: 59

Rep: Reputation: 15
Problem installing giFT....


OK, I downloaded gift, cd'ed to it's directory and did the ol' ./configure.

However, I get the error:

checking for _vsnprintf... no
checking for lt_dlopen in -lltdl... no
checking ltdl.h usability... no
checking ltdl.h presence... no
checking for ltdl.h... no
configure: error:
libltdl support is temporarily required. Please install the appropriate
library and header files (which includes the -dev package). See config.log
for more details.


I'm running Mandrake 9.1. Can anyone tell me where I can get the missing files? Thanks

J
 
Old 09-06-2003, 11:42 PM   #2
contrasutra
LQ Guru
 
Registered: Mar 2003
Location: New Jersey
Distribution: Arch Linux
Posts: 1,445

Rep: Reputation: 47
google.


Try searching google for libltdl


You could even try "URPMI".
 
Old 09-06-2003, 11:43 PM   #3
J_Bone
Member
 
Registered: Aug 2003
Location: Vancouver, Canada
Distribution: Mandrake 9.1
Posts: 59

Original Poster
Rep: Reputation: 15
OK, thanks, I'll report back
 
Old 09-07-2003, 12:08 AM   #4
J_Bone
Member
 
Registered: Aug 2003
Location: Vancouver, Canada
Distribution: Mandrake 9.1
Posts: 59

Original Poster
Rep: Reputation: 15
Well, as I look for this thing, I can't help but wonder, why don't the developers include all necessary software in the download?

If it's an issue of the size of the download, there could be a "full" or "stripped" version....

Anyways, I keep looking for this libltdl
 
Old 09-07-2003, 12:44 AM   #5
contrasutra
LQ Guru
 
Registered: Mar 2003
Location: New Jersey
Distribution: Arch Linux
Posts: 1,445

Rep: Reputation: 47
Why dont they include dependancies?

Because if you included all the dependancies of a program, a 5MB program would be an 80MB download.

Linux is about modularity. "I already have that library, why should I have to install/download it again?".
 
Old 09-07-2003, 12:57 AM   #6
J_Bone
Member
 
Registered: Aug 2003
Location: Vancouver, Canada
Distribution: Mandrake 9.1
Posts: 59

Original Poster
Rep: Reputation: 15
OK, fair enough, but still, I can't find this file "libltdl".....

I searched numerous google returns and couldn't figure out how to use "URPMI".....

I see you point, I guess I was just a little frustrated

Thanks for the help though....

J
 
Old 09-07-2003, 03:06 AM   #7
J_Bone
Member
 
Registered: Aug 2003
Location: Vancouver, Canada
Distribution: Mandrake 9.1
Posts: 59

Original Poster
Rep: Reputation: 15
K, I need to back up....

Please, here my plea:

Can someone give a noob a simple, step-by-step on how to install giFT including the appropriate plug-ins? I am running Mandrake 9.1. Thanks a bunch

J
 
Old 09-07-2003, 06:03 AM   #8
mhearn
LQ Guru
 
Registered: Nov 2002
Location: Durham, England
Distribution: Fedora Core 4
Posts: 1,565

Rep: Reputation: 57
libltdl is a part of libtool. Install libtool and libtool-dev
 
Old 09-07-2003, 12:41 PM   #9
J_Bone
Member
 
Registered: Aug 2003
Location: Vancouver, Canada
Distribution: Mandrake 9.1
Posts: 59

Original Poster
Rep: Reputation: 15
Thanks Mike

OK, I had a version of libltdl installed, but I guess it was an old one, so I uninstalled it and installed a different (newer) version. GiFT then "appeared" to install (after cd'ing to it's directory, doing ./configure, make and make install) but it still doesn't seem to work right.

It installed some files in /usr/local/bin, one executive file called gift, another called giftd, a perl program called giFT-setup, and a plain text doc called gift-setup.

Hmmm but that's as far as I got. I'll show a sample of the text in the plain doc:

main();

sub main
{
my $templates = find_templates ($datadir);
my $configed = find_configured ($confdir);

# no available templates, bogus install
if (scalar @$templates == 0)
{
print <<"__EOF__";

*** ERROR ***

No available configuration templates were found. This could mean that you
legitimately have none and need to install the giFT daemon properly or that
you have placed them in an alternate data directory than this script is
looking. The configuration template path being used is:

$datadir

__EOF__

return;
}

#
# Configuration modules which will be read from the available templates.
# This basically creates a new data structure which is a hash of module
# entries, including ->{path_cfg} and ->{path_tpl}. This data
# structure may be further trimmed through the condition below.
#
my $modules_hash = build_modules ($configed, $templates);

#
# If there have been previously configured modules, we need to ask the
# user if they'd like us to rebuild from available templates or only
# add new configuration templates to the confdir.
#
if (scalar @$configed > 0)
{
print <<"__EOF__";

*** WARNING ***

Previous configuration has been detected. This script is capable of
preserving that configuration and only adding from new available templates.
If you choose no, all presently installed configuration modules will be used
in place of any custom configuration you have. In the future, previous
configuration will be read and used as defaults, but this script does not
currently have such a feature.



So, I need a giFT daemon now? j/k

Can anyone make some sense of this info? Thanks

J
 
Old 09-07-2003, 12:50 PM   #10
mhearn
LQ Guru
 
Registered: Nov 2002
Location: Durham, England
Distribution: Fedora Core 4
Posts: 1,565

Rep: Reputation: 57
Well, did you try running giFT-setup, or that program? They are programs, try running them, see what happens.....
 
Old 09-07-2003, 01:23 PM   #11
J_Bone
Member
 
Registered: Aug 2003
Location: Vancouver, Canada
Distribution: Mandrake 9.1
Posts: 59

Original Poster
Rep: Reputation: 15
Hmmm well yes, I tried doubleclicking them, the executables did nothing and the other two just displayed text. How would I run them from a command prompt?

Thanks
 
Old 09-07-2003, 01:27 PM   #12
mhearn
LQ Guru
 
Registered: Nov 2002
Location: Durham, England
Distribution: Fedora Core 4
Posts: 1,565

Rep: Reputation: 57
just type their names and hit enter
 
Old 09-07-2003, 02:13 PM   #13
J_Bone
Member
 
Registered: Aug 2003
Location: Vancouver, Canada
Distribution: Mandrake 9.1
Posts: 59

Original Poster
Rep: Reputation: 15
OK Mike, I ran the setup, but when i try to run the executables I get this error:

[root@a3h33829y42al bin]# giFT
Segmentation fault
[root@a3h33829y42al bin]# giftd
[12:11] *** GIFT-WARNING: deprecated configuration found at /root/.giFT/gift.conf: looking for giftd.conf...
*** GIFT-FATAL: couldn't load protocol in file /usr/local/lib/giFT/libgiFT -V.la: file not found
*** Often times more information can be found in the log file or with the -v command line switch.
[root@a3h33829y42al bin]#

So, what now?
 
Old 09-07-2003, 02:16 PM   #14
mhearn
LQ Guru
 
Registered: Nov 2002
Location: Durham, England
Distribution: Fedora Core 4
Posts: 1,565

Rep: Reputation: 57
try not running it as root
 
Old 09-07-2003, 02:23 PM   #15
J_Bone
Member
 
Registered: Aug 2003
Location: Vancouver, Canada
Distribution: Mandrake 9.1
Posts: 59

Original Poster
Rep: Reputation: 15
You're right, but now i get:

[john@a3h33829y42al bin]$ giftd
[12:21] *** GIFT-WARNING: deprecated configuration found at /home/john/.giFT/gift.conf: looking for giftd.conf...

*** ERROR: Your setup is incomplete ***

You will need to run gift-setup and be sure that you read absolutely
every configuration option (no, really). Some default configuration
values are considered illegal, and will raise this error message. If you
suspect that you have configured giFT properly, consult the conf files in
/home/john/.giFT/ for diagnostic purposes.

If you are still having problems you should consult the QUICKSTART guide
available from the standard giFT distribution.

I guess I did something wrong

I'll run setup again, although some of it is kinda abstract to understand.. Thanks again Mike
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

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
gift problem after installing ICS mike8994 Linux - Newbie 3 11-08-2004 02:01 PM
Installing giFT ?? Seraph Linux - Newbie 1 09-03-2003 04:50 AM
Problem with installing giFT clients - Apollon and Kift eomerek Linux - Software 5 08-30-2003 02:36 PM
Problem Installing, "Gift" LinuZ Linux - Software 6 08-12-2003 02:07 PM
gift fastrack installing problem TweakerFD Linux - Software 4 08-07-2003 07:04 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Newbie

All times are GMT -5. The time now is 03:16 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