LinuxQuestions.org
Help answer threads with 0 replies.
Home Forums Tutorials Articles Register
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 11-25-2010, 08:24 PM   #1
patostevens
Member
 
Registered: Dec 2007
Location: Kennewick,WA
Distribution: Slackware 14
Posts: 172

Rep: Reputation: 21
Claws-mail, libetpan.so.13 and slack 13.1


I've tried this several times and cannot get claws-mail to run. Libetpan has been installed, removed and re-installed. When trying to start c-mail it say cannot find libetpan.so.13 which is accurate - the current installation of libetpan puts in libetpan.so.15. These packages all come from slackbuilds (have also tried Alien's package wtih the same results). This a standard 13.1 install with regular updates through slackpkg.

Any ideas?

Last edited by patostevens; 11-26-2010 at 12:42 PM.
 
Old 11-25-2010, 10:28 PM   #2
hitest
Guru
 
Registered: Mar 2004
Location: Canada
Distribution: Void, Debian, Slackware
Posts: 7,342

Rep: Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746Reputation: 3746
Quote:
Originally Posted by patostevens View Post
I've tried this several times and cannot get claws-mail to run. Libetpan has been installed, removed and re-installed. When trying to start c-mail it say cannot find libetpan.so.13 which is accurate - the current installation of libetpan puts in libetpan.so.15. These packages all come from slackbuilds (have also tried Alien's package wtih the same results). This a standard 13.1 install with regular updates through slackpkg.

Any ideas?
Odd. I'm happily running claws-mail on two Slackware-current boxes and one 13.1 box. I'm using claws-mail 3.7.7 and libetpan from slackbuilds.org for Slackware 13.1. Maybe try the libetpan for Slackware 13.1 offered at slackbuilds.org.
 
Old 11-25-2010, 10:56 PM   #3
SeRi@lDiE
Member
 
Registered: Jun 2006
Location: /dev/null
Distribution: Slackware 13.1, Slackware 13.37, aptosid, rhel
Posts: 547
Blog Entries: 7

Rep: Reputation: 55
Mhhh strange I am using the slackbuild claws-mail with no issues... I used the libetpan that I compile some time a go...
If you need the pkg for libetpan let me know....
 
Old 11-26-2010, 11:47 AM   #4
patostevens
Member
 
Registered: Dec 2007
Location: Kennewick,WA
Distribution: Slackware 14
Posts: 172

Original Poster
Rep: Reputation: 21
My libetpan is the one for 13.1 from slackbuilds. The only issue that I can find is that this package installs libetpan.so.15 rather than 13 - which is what claws-mail is looking for.
 
Old 11-26-2010, 12:04 PM   #5
dh2k
Member
 
Registered: Jan 2006
Distribution: Slackware 13.0 (KDE 3.5.10 from 12.2; Xfce 4.6; Fluxbox); Slackware 13.1 (KDE 4.5)
Posts: 211

Rep: Reputation: 52
what is a terminal output from
Code:
cd /usr/lib
ls -la | grep libetpan
also - did you build from SlackBuilds.org
for 13.1 or install from a pre-built package? (e.g. http://repository.slacky.eu)

Last edited by dh2k; 11-26-2010 at 12:09 PM.
 
Old 11-26-2010, 12:11 PM   #6
patostevens
Member
 
Registered: Dec 2007
Location: Kennewick,WA
Distribution: Slackware 14
Posts: 172

Original Poster
Rep: Reputation: 21
output below:

ls -la | grep libetpan
-rwxr-xr-x 1 root root 1211 2010-11-25 16:57 libetpan.la
lrwxrwxrwx 1 root root 18 2010-11-25 16:57 libetpan.so -> libetpan.so.15.0.0
lrwxrwxrwx 1 root root 18 2010-11-25 16:57 libetpan.so.15 -> libetpan.so.15.0.0
-rwxr-xr-x 1 root root 620668 2010-11-25 16:57 libetpan.so.15.0.0


As i stated previously, built from Slackbuilds to start with, removed, used Alien Bob's, removed, tried Slackbuilds again. Same results with each attempt.
 
Old 11-26-2010, 12:21 PM   #7
dh2k
Member
 
Registered: Jan 2006
Distribution: Slackware 13.0 (KDE 3.5.10 from 12.2; Xfce 4.6; Fluxbox); Slackware 13.1 (KDE 4.5)
Posts: 211

Rep: Reputation: 52
In a terminal try
Code:
ln -s /usr/lib/libetpan.so /usr/lib/libetpan.so.13
then try running claws-mail program in terminal see if works or complains more



'libetpan.so.15' is just a link to /usr/lib/libetpan.so
 
Old 11-26-2010, 12:39 PM   #8
patostevens
Member
 
Registered: Dec 2007
Location: Kennewick,WA
Distribution: Slackware 14
Posts: 172

Original Poster
Rep: Reputation: 21
That did it. Thanks a lot.
So does that make a permanent link or do I need to do something else?
 
Old 11-26-2010, 12:40 PM   #9
dh2k
Member
 
Registered: Jan 2006
Distribution: Slackware 13.0 (KDE 3.5.10 from 12.2; Xfce 4.6; Fluxbox); Slackware 13.1 (KDE 4.5)
Posts: 211

Rep: Reputation: 52
Also for good house-keeping I recommend, as root
Code:
cd ~
mkdir my-system-symbolic-links
cd my-system-symbolic-links
echo "ln -s /usr/lib/libetpan.so /usr/lib/libetpan.so.13" >> README.txt
Just so in (n)mths time you know what you have changed should you ever remove/upgrade 'libetpan'.

It would not effect the removal of 'libetpan' but it would just be a redundant link - just keeps admin more tidier/eaiser.

Last edited by dh2k; 11-26-2010 at 12:56 PM. Reason: I omitted cd my-system-symbolic-links
 
Old 11-26-2010, 12:45 PM   #10
dh2k
Member
 
Registered: Jan 2006
Distribution: Slackware 13.0 (KDE 3.5.10 from 12.2; Xfce 4.6; Fluxbox); Slackware 13.1 (KDE 4.5)
Posts: 211

Rep: Reputation: 52
Quote:
Originally Posted by patostevens View Post
That did it. Thanks a lot.
So does that make a permanent link or do I need to do something else?
Well, its as permanent until you rm /usr/lib/libetpan.so.13 ;-)

You shouldn't need do anymore.
Just be aware of using a newer version of claws-mail - it may not use libetpan.so.13 - chances are it would use libetpan.so.15

Therefore in (n)mths time you could 'tidy-up' your system and get rid of that link - I would even say leaving it there would have near to nil-problems.

Last edited by dh2k; 11-26-2010 at 12:51 PM.
 
Old 11-28-2010, 07:20 AM   #11
dh2k
Member
 
Registered: Jan 2006
Distribution: Slackware 13.0 (KDE 3.5.10 from 12.2; Xfce 4.6; Fluxbox); Slackware 13.1 (KDE 4.5)
Posts: 211

Rep: Reputation: 52
Hi patostevens,

I had same problem as you with claws-mail -
Claws Mail version 3.7.7 seems to work fine without the link created in this thread.

Do you have "Claws Mail version 3.7.6"?
To check could you post a terminal output for

Code:
claws-mail -v
 
  


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
Changing MH folder in Claws mail Berticus Linux - Software 7 01-18-2021 05:51 PM
[SOLVED] trying to install the plug-in Gtkhtml2Viewer in claws-mail mark_alfred Linux - Software 2 09-13-2010 09:17 AM
LXer: Claws Mail: Mail with Attitude LXer Syndicated Linux News 0 03-20-2010 01:31 AM
How to install Claws Mail Steve900 Linux - Software 3 03-09-2007 07:20 AM
LXer: How to Install Claws mail (Mail Client) in Ubuntu LXer Syndicated Linux News 0 03-06-2007 04:01 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 06:37 AM.

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