diff Makefile.in @ 803:460410334267 ecc

Fix static library order, libtomcrypt depends on libtommath
author Matt Johnston <matt@ucc.asn.au>
date Tue, 21 May 2013 13:20:02 +0800
parents 7dcb46da72d9
children 4095b6d7c9fc
line wrap: on
line diff
--- a/Makefile.in	Tue May 21 12:15:48 2013 +0800
+++ b/Makefile.in	Tue May 21 13:20:02 2013 +0800
@@ -17,9 +17,9 @@
 LTM=libtommath/libtommath.a
 
 ifeq (@BUNDLED_LIBTOM@, 1)
-LIBTOM_DEPS=$(LTM) $(LTC)
+LIBTOM_DEPS=$(LTC) $(LTM) 
 CFLAGS+=-I$(srcdir)/libtomcrypt/src/headers/
-LIBS+=$(LTM) $(LTC)
+LIBS+=$(LTC) $(LTM) 
 endif
 
 COMMONOBJS=dbutil.o buffer.o \