In regard to: Libtool error, Kemp Randy-W18971 said (at 3:12pm on Oct 8, 2001):

>libtool: ltconfig version `' does not match ltmain.sh version `1.3.5'
>Fatal configuration error.  See the libtool docs for more information.

It means that the version of libtool that the package thinks its using
doesn't jive with the ltmain.sh that's in the package directory.

This commonly happens if you try update the libtool source file(s)
themselves, without also rebuilding configure from configure.in.  Did
you manually or through `libtoolize' install a different version of
ltmain.sh than the one that ships with the package?

Assuming you have libtool, automake, and autoconf installed on your
build machine, you can often alleviate this problem by doing

        cd package-top-directory
        rm -f ltmain.sh ltconfig libtool
        rm -f aclocal.m4
        libtoolize --copy --force
        aclocal
        autoconf

Depending on the package and what you have installed on your box, more may
be needed than just that.

That's kind of a "big hammer" approach, though.

Tim
-- 
Tim Mooney                              [EMAIL PROTECTED]
Information Technology Services         (701) 231-1076 (Voice)
Room 242-J6, IACC Building              (701) 231-8541 (Fax)
North Dakota State University, Fargo, ND 58105-5164


_______________________________________________
Libtool mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/libtool

Reply via email to