diff options
author | Keith Packard <keithp@keithp.com> | 2013-08-17 16:01:44 +0200 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-08-17 16:01:44 +0200 |
commit | fa0859a51576efe231effcb5995f325f9e7e0fcb (patch) | |
tree | cb4830c2cbc848cf244a3a46b34dfd54be385d12 | |
parent | 324ceea43c115f4bed3a5276e57559c6c76b07c1 (diff) |
altos: Make FAT test program link explicitly against libcrypto
For some reason, the MD5_Final symbol isn't resolved when linking only
against libssl.
Signed-off-by: Keith Packard <keithp@keithp.com>
-rw-r--r-- | src/test/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/Makefile b/src/test/Makefile index 3c9ac9c6..75b1f848 100644 --- a/src/test/Makefile +++ b/src/test/Makefile @@ -69,7 +69,7 @@ ao_micropeak_test: ao_micropeak_test.c ao_microflight.c ao_kalman.h cc $(CFLAGS) -o $@ ao_micropeak_test.c -lm ao_fat_test: ao_fat_test.c ao_fat.c ao_bufio.c - cc $(CFLAGS) -o $@ ao_fat_test.c -lssl + cc $(CFLAGS) -o $@ ao_fat_test.c -lssl -lcrypto ao_aes_test: ao_aes_test.c ao_aes.c ao_aes_tables.c cc $(CFLAGS) -o $@ ao_aes_test.c |