diff options
author | Keith Packard <keithp@keithp.com> | 2013-08-17 16:01:44 +0200 |
---|---|---|
committer | Bdale Garbee <bdale@gag.com> | 2013-08-17 16:04:27 +0200 |
commit | eaabbee19837970022ccb0a8ca1277621cbe0be6 (patch) | |
tree | 3206af3801c015ae072a814d9a06c2ec73314d22 /src | |
parent | 0c2d248b9992a013c630fbd6e3cd8450ffa49fd2 (diff) |
altos: Make FAT test program link explicitly against libcryptobranch-1.2
For some reason, the MD5_Final symbol isn't resolved when linking only
against libssl.
Signed-off-by: Keith Packard <keithp@keithp.com>
Diffstat (limited to 'src')
-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 169c1dc6..76d50f16 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 |