On Mon, 3 Nov 2003, Florent Gilain wrote: >Andreas, >Here are my 2 interesting files : >the MakeFile used to run the make command >The log file of the make operation..
Great, here's something you can try. Locate the LIBDL definition in the Makefile, then prepend -L/usr/local/ssl/lib -lssl -lcrypto So it becomes LIBDL = -L/usr/local/ssl/lib -lssl -lcrypto -ldl See if that helps. If it doesn't then you can run the link command yourself, by entering src/ and the running this command: g++ -g -O2 -Wall -fno-exceptions -O2 -I/usr/local/ssl/include \ -o bincimap-up arg-arg.o arg-error.o arg-parser.o authenticate.o \ base64.o bincimap-up.o broker.o convert.o greeting.o imapparser.o \ io.o io-ssl.o operator-authenticate.o operator-capability.o \ operator-noop.o operator-login.o operator-logout.o \ operator-starttls.o recursivedescent.o session.o \ session-initialize-bincimap-up.o status.o storage.o \ storageparser.o tools.o -L/usr/local/ssl/lib -lssl -lcrypto -ldl Then run "make" again. Andy :-) -- Andreas Aardal Hanssen | http://www.andreas.hanssen.name/gpg Author of Binc IMAP | "It is better not to do something http://www.bincimap.org/ | than to do it poorly."
