On Tue, Jul 14, 2009 at 12:02:15PM +0100, Andrew Farr wrote: > I just had to add "-ldl -lrt -lidn -lldap -lz" to the library list. > This could probably be reduced by building libcurl from source and > deselecting some options.
FWIW, the standard Makefile idiom you want is to replace -lcurl with $(shell pkg-config --static --libs libcurl) which will expand to the output of that command, run once. /* Steinar */ -- Homepage: http://www.sesse.net/ _______________________________________________ Prime mailing list [email protected] http://hogranch.com/mailman/listinfo/prime
