# HG changeset patch # User Matt Johnston # Date 1516718658 -28800 # Node ID ef310db5ccec4e20d703f4c97547ee69711fb2c6 # Parent 336cae2238ca5d3d3bc320dad3ec8f4afcc20622 fix updates to libtomcrypt/libtommath for out of tree builds diff -r 336cae2238ca -r ef310db5ccec configure.ac --- a/configure.ac Wed Oct 18 22:41:27 2017 +0800 +++ b/configure.ac Tue Jan 23 22:44:18 2018 +0800 @@ -828,6 +828,7 @@ AS_MKDIR_P(libtomcrypt/src/modes/ofb) AS_MKDIR_P(libtomcrypt/src/modes/f8) AS_MKDIR_P(libtomcrypt/src/modes/lrw) +AS_MKDIR_P(libtomcrypt/src/modes/xts) AS_MKDIR_P(libtomcrypt/src/pk/asn1/der/bit) AS_MKDIR_P(libtomcrypt/src/pk/asn1/der/boolean) AS_MKDIR_P(libtomcrypt/src/pk/asn1/der/choice) diff -r 336cae2238ca -r ef310db5ccec libtomcrypt/Makefile.in --- a/libtomcrypt/Makefile.in Wed Oct 18 22:41:27 2017 +0800 +++ b/libtomcrypt/Makefile.in Tue Jan 23 22:44:18 2018 +0800 @@ -9,7 +9,8 @@ PLATFORM := $(shell uname | sed -e 's/_.*//') -srcdir=. +VPATH=@srcdir@ +srcdir=@srcdir@ # Compiler and Linker Names #CC=gcc diff -r 336cae2238ca -r ef310db5ccec libtommath/Makefile.in --- a/libtommath/Makefile.in Wed Oct 18 22:41:27 2017 +0800 +++ b/libtommath/Makefile.in Tue Jan 23 22:44:18 2018 +0800 @@ -2,7 +2,8 @@ # #Tom St Denis -srcdir=. +VPATH=@srcdir@ +srcdir=@srcdir@ # So that libtommath can include Dropbear headers for options and m_burn() CFLAGS += -I$(srcdir) -I../libtomcrypt/src/headers/ -I$(srcdir)/../libtomcrypt/src/headers/ -I../ -I$(srcdir)/../ @@ -26,8 +27,6 @@ coverage: LIBNAME:=-Wl,--whole-archive $(LIBNAME) -Wl,--no-whole-archive -include makefile.include - LCOV_ARGS=--directory . #START_INS