# HG changeset patch # User Matt Johnston # Date 1369113602 -28800 # Node ID 4604103342672364f84ce950ca441f5c818aeff1 # Parent 4029d3432a4f91eac347feebd7da51dbac248aaf Fix static library order, libtomcrypt depends on libtommath diff -r 4029d3432a4f -r 460410334267 Makefile.in --- 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 \