Exim: crashed with signal 11 while delivering

issue is still there

But by adding

Code:
HAVE_ICONV=no
#CFLAGS=-O -I/usr/local/include
EXTRALIBS_EXIM=-L/usr/local/lib -liconv

The issue is still there. I can't update exim and I'm using custom build 1.2
 
Well just build from source then by following the help guide.
 
I tried but...

Hi scsi,

thank you for your quick replies.

I tried but when I run "make" I got this kind of error

Code:
perl.c:(.text+0x127a): undefined reference to `Perl_Gthr_key_ptr'
perl.c:(.text+0x128c): undefined reference to `Perl_Istack_sp_ptr'
perl.c:(.text+0x129a): undefined reference to `Perl_Gthr_key_ptr'
perl.c:(.text+0x12ac): undefined reference to `Perl_Imarkstack_ptr_ptr'
perl.c:(.text+0x12c1): undefined reference to `Perl_Gthr_key_ptr'
perl.c:(.text+0x12d3): undefined reference to `Perl_Istack_base_ptr'
perl.c:(.text+0x12f2): undefined reference to `Perl_croak_nocontext'
perl.c:(.text+0x12fe): undefined reference to `Perl_Gthr_key_ptr'
perl.c:(.text+0x1310): undefined reference to `Perl_Istack_base_ptr'
perl.c:(.text+0x132e): undefined reference to `Perl_Gthr_key_ptr'
perl.c:(.text+0x1340): undefined reference to `Perl_Istack_base_ptr'
perl.c:(.text+0x1359): undefined reference to `Perl_Gthr_key_ptr'
perl.c:(.text+0x136b): undefined reference to `Perl_Istack_base_ptr'
perl.c:(.text+0x1381): undefined reference to `Perl_Gthr_key_ptr'
perl.c:(.text+0x1393): undefined reference to `Perl_Istack_base_ptr'
perl.c:(.text+0x13a4): undefined reference to `Perl_Gthr_key_ptr'
perl.c:(.text+0x13c9): undefined reference to `Perl_sv_2pv_flags'

So I guess I have to install/update perl and run the command:

apt-get install libperl-dev

When I run this command I have this another issue:
Code:
Failed to fetch http://ftp.be.debian.org/debian/pool/main/p/perl/libperl5.10_5.10.0-19lenny2_i386.deb  404 Not Found [IP: 77.243.184.65 80]

I guess there is something wrong with my source.list? But what and how can I update it?

Thank you in advance.

mileZ
 
Code:
aptitude update && aptitude -y install libperl-dev

If that doesnt work you might have to do:

Code:
cd /usr/local/src
wget "http://security.debian.org/debian-security/pool/updates/main/p/perl/libperl-dev_5.10.0-19lenny5_i386.deb"
dpkg -i libperl-dev_5.10.0-19lenny5_i386.deb
 
Thank you

scis thank you very very very much!

It seems that the problem is solved now!! :cool:
 
Back
Top