[Cryptech-Commits] [sw/pkcs11] 06/20: Need to link libtfm.a while building .so, doh.

git at cryptech.is git at cryptech.is
Tue Jul 7 18:26:36 UTC 2015


This is an automated email from the git hooks/post-receive script.

sra at hactrn.net pushed a commit to branch master
in repository sw/pkcs11.

commit 9ed6a780a22a6c946111aee1d78f167586c22d3c
Author: Rob Austein <sra at hactrn.net>
Date:   Mon Jun 22 22:13:21 2015 -0400

    Need to link libtfm.a while building .so, doh.
---
 GNUmakefile | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/GNUmakefile b/GNUmakefile
index e73c757..692ddf1 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -29,10 +29,11 @@
 # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 
 LIBHAL_DIR   = ../libhal
+LIBTFM_DIR   = ../libtfm
 SQLITE3_DIR  = ../sqlite3
 
 CFLAGS	+= -g3 -fPIC -Wall -std=c99 -I${LIBHAL_DIR} -I${SQLITE3_DIR}
-LIBS	:= ${LIBHAL_DIR}/libhal.a ${SQLITE3_DIR}/libsqlite3.a
+LIBS	:= ${LIBHAL_DIR}/libhal.a ${LIBTFM_DIR}/libtfm.a ${SQLITE3_DIR}/libsqlite3.a
 
 all: libpkcs11.so
 



More information about the Commits mailing list