On Fri, Apr 02, 2004 at 12:04:18PM +0200, Andreas Schwab <[EMAIL PROTECTED]> wrote a message of 18 lines which said:
> Use libtool with -module. That's what I eventually did. The actual configuration in Makefile.am is: pkglib_LTLIBRARIES = whois.la whois_la_SOURCES = whois.c whois_la_LDFLAGS = -module And the main program: bin_PROGRAMS = echoping man_MANS = echoping.1 echoping_SOURCES = echoping.c error.c readline.c writen.c util.c http.c icp.c HTParse.c echoping.h icp.h HTParse.h smtp.c echoping_LDADD = echoping_LDFLAGS = -export-dynamic Thanks.