Page 1 of 1

Error - - Linux - libltdl : No such file or directory

Posted: 2008-05-12T00:32:47-07:00
by exius
Hi.

Been working on installing this for a while and could not find documents on how to successfully install ImageMagick-6.4.1 in SlackWare. I have not changed the "configure" options. What I don't know is which libraries are necessary for basic installation. Here's my errors thrown when "make":

Code: Select all

ar: /root/ImageMagick-6.4.1/ltdl/.libs/dlopen.a: No such file or directory
make[1]: *** [ltdl/libltdlc.la] Error 9
make[1]: Leaving directory `/root/ImageMagick-6.4.1'
make: *** [all] Error 2
and to see what else, "make install":

Code: Select all

make  install-am
make[1]: Entering directory `/root/ImageMagick-6.4.1'
/bin/sh ./libtool --silent --tag=CC   --mode=link gcc  -g -O2 -Wall -W -pthread -no-undefined -dlpreopen ltdl/dlopen.la  -lfreetype -lz -o ltdl/libltdlc.la  ltdl/loaders/ltdl_libltdlc_la-preopen.lo ltdl/ltdl_libltdlc_la-lt__alloc.lo ltdl/ltdl_libltdlc_la-lt_dlloader.lo ltdl/ltdl_libltdlc_la-lt_error.lo ltdl/ltdl_libltdlc_la-ltdl.lo ltdl/ltdl_libltdlc_la-slist.lo ltdl/lt__strl.lo
ar: /root/ImageMagick-6.4.1/ltdl/.libs/dlopen.a: No such file or directory
make[1]: *** [ltdl/libltdlc.la] Error 9
make[1]: Leaving directory `/root/ImageMagick-6.4.1'
What is this problem with libltdl? or is there another issue?

exius

Re: Error - - Linux - libltdl : No such file or directory

Posted: 2008-05-12T06:26:06-07:00
by magick
Try this:
  • configure --disable-shared
    make
Does that work?

Re: Error - - Linux - libltdl : No such file or directory

Posted: 2008-05-12T10:12:11-07:00
by exius
Thanks for tip, but it's not resolved.

my steps:
make uninstall
make distclean
configure --disable-shared
make
make install

errors again:
grep: /usr/lib/libltdl.la: No such file or directory
/usr/bin/sed: can't read /usr/lib/libltdl.la: No such file or directory
libtool: link: `/usr/lib/libltdl.la' is not a valid libtool archive
make[1]: *** [magick/libMagickCore.la] Error 1
make[1]: Leaving directory `/root/ImageMagick-6.4.1'
make: *** [all] Error 2
new error in make install:
grep: /usr/lib/libltdl.la: No such file or directory
/usr/bin/sed: can't read /usr/lib/libltdl.la: No such file or directory
libtool: link: `/usr/lib/libltdl.la' is not a valid libtool archive
make[1]: *** [magick/libMagickCore.la] Error 1
make[1]: Leaving directory `/root/ImageMagick-6.4.1'
make: *** [install] Error 2

Re: Error - - Linux - libltdl : No such file or directory

Posted: 2008-05-14T02:37:09-07:00
by exius
...still no luck.