Re: Libtool library used but `LIBTOOL' is undefined??

2011-01-10 Thread kknd1233
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

Libtool library used but `LIBTOOL' is undefined??

2011-01-04 Thread kknd1233
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