From: Sebastian Stark Date: Mon, 19 May 2008 16:03:10 +0000 (+0200) Subject: link against libcrypto instead of libssl X-Git-Tag: v0.0.2~45^2~1 X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=commitdiff_plain;h=142d7125264a6699642bd34702d27cc1b5a89b78 link against libcrypto instead of libssl --- diff --git a/Makefile b/Makefile index 266d748..674ff30 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,7 @@ Makefile.deps: $(wildcard *.c *.h) -include Makefile.deps adu: $(objects) - $(CC) -o $@ $(objects) -lssl + $(CC) -o $@ $(objects) -lcrypto %.o: %.c Makefile $(CC) -c $(CPPFLAGS) $(DEBUG_CPPFLAGS) $<