Re: AM_PROG_LIBTOOL / AC_PROG_LIBTOOL

2001-02-10 Thread Tom Tromey
> "Jeremy" == Jeremy Slade <[EMAIL PROTECTED]> writes: Jeremy> I am using autoconf-2.49c and automake-1.4b on HPUX 10.20. Jeremy> When I put AM_PROG_LIBTOOL in my configure.in, automake says I Jeremy> should use AC_PROG_LIBTOOL instead. But when I change it, Jeremy> autoconf then generates a

Re: AM_PROG_LIBTOOL / AC_PROG_LIBTOOL

2001-02-09 Thread Jeremy Slade
Tim Heath writes: > I have version 1.3.5 of LIBTOOL sorry about that. Have you tried > deleting your configure, config.cache, and aclocal.m4 then running: > > aclocal > automake > autconf > ? Tried that, same result. > I would also look in your actual automake file for this kind of entry: >

Re: AM_PROG_LIBTOOL / AC_PROG_LIBTOOL

2001-02-09 Thread Tim Heath
I have version 1.3.5 of LIBTOOL sorry about that. Have you tried deleting your configure, config.cache, and aclocal.m4 then running: aclocal automake autconf ? I would also look in your actual automake file for this kind of entry: eval 'exec #!/home/th374862/timheath/gnu_tools/perl -S $0 ${1+"

Re: AM_PROG_LIBTOOL / AC_PROG_LIBTOOL

2001-02-09 Thread Jeremy Slade
Tim Heath writes: > I ran into this problem last night when installing on RH 7.0. It turned > out that the configure script for automake and autoconf installed > automake/autoconf in /usr/local/share. When I did the command > > which automake > > I found it in /usr/local/bin > > Try running a

AM_PROG_LIBTOOL / AC_PROG_LIBTOOL

2001-02-09 Thread Jeremy Slade
I'm brand new to automake/autoconf, trying to configure my first real project. I've got automake building a .a for me using the _LIBRARIES command, now I want to convert to using libtool to build shared and archive libraries. I am using autoconf-2.49c and automake-1.4b on HPUX 10.20. When I put