Dear Bob,
It works! Yes I reinstalled automake and libtool with command './configure
--prefix=/usr/local' to the same directory, then the problem is solved.
Thanks a lot!
Cheers,
Oliver
Bob Friesenhahn wrote:
>
> On Tue, 4 Jan 2011, kknd1233 wrote:
>>
>> And
Hi everyone. I am new to libtool.
I was following the libtool tutorial to write a HelloWorld example of
libtool:
@lib/ say.c:
#include
#include
void say_hello (void)
{
puts ("Hello World!");
puts ("This is " PACKAGE_STRING ".");
}
@lib/ say.h:
void say_hello (void);
@src/ main.c:
#include "sa