[Cryptech-Commits] [sw/pkcs11] branch master updated: Support use of system sqlite3 library instead of our own; various other tweaks Lintian wanted.
git at cryptech.is
git at cryptech.is
Thu Jun 23 17:54:29 UTC 2016
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.
The following commit(s) were added to refs/heads/master by this push:
new ea4c71c Support use of system sqlite3 library instead of our own; various other tweaks Lintian wanted.
ea4c71c is described below
commit ea4c71c075df677cd9f559ca06c79e9202630510
Author: Rob Austein <sra at hactrn.net>
AuthorDate: Thu Jun 23 13:38:54 2016 -0400
Support use of system sqlite3 library instead of our own; various other tweaks Lintian wanted.
---
GNUmakefile | 34 +++++++++++++++++++++++++---------
1 file changed, 25 insertions(+), 9 deletions(-)
diff --git a/GNUmakefile b/GNUmakefile
index 212409a..77e8748 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -1,7 +1,7 @@
# (GNU) Makefile for Cryptech PKCS #11 implementation.
#
# Author: Rob Austein
-# Copyright (c) 2015, NORDUnet A/S
+# Copyright (c) 2015-2016, NORDUnet A/S
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
@@ -30,6 +30,13 @@
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+# Locations of libraries on which this code depends.
+# This will probably need to change if we go to VPATHs.
+
+LIBHAL_DIR = ../libhal
+LIBTFM_DIR = ../thirdparty/libtfm
+SQLITE3_DIR = ../thirdparty/sqlite3
+
# Whether to enable threading. Main reason for being able to turn it
# off is that gdb on the Novena (sometimes) goes bananas when
# threading is enabled.
@@ -53,13 +60,15 @@ ifndef ENABLE_FOOTNOTE_WARNINGS
ENABLE_FOOTNOTE_WARNINGS := yes
endif
-LIBHAL_DIR = ../libhal
-LIBTFM_DIR = ../thirdparty/libtfm
-SQLITE3_DIR = ../thirdparty/sqlite3
+# Whether to build and use our own copy of the sqlite3 library.
+
+ifndef ENABLE_OWN_SQLITE_LIBRARY
+ ENABLE_OWN_SQLITE_LIBRARY := $(if $(wildcard ${SQLITE3_DIR}),yes,no)
+endif
-CFLAGS := -g3 -fPIC -Wall -std=c99 -I${LIBHAL_DIR} -I${SQLITE3_DIR}
-SOFLAGS := -Wl,-Bsymbolic-functions -Wl,-Bsymbolic -Wl,-z,noexecstack
-LIBS := ${LIBHAL_DIR}/libhal.a ${LIBTFM_DIR}/libtfm.a ${SQLITE3_DIR}/libsqlite3.a
+CFLAGS := -g3 -fPIC -Wall -std=c99 -I${LIBHAL_DIR}
+SOFLAGS := -Wl,-Bsymbolic-functions -Wl,-Bsymbolic -Wl,-z,noexecstack -Wl,-soname,libpkcs11.so.0
+LIBS := ${LIBHAL_DIR}/libhal.a ${LIBTFM_DIR}/libtfm.a
ifeq "${ENABLE_FOOTNOTE_WARNINGS}" "no"
CFLAGS += -Wno-\#warnings -Wno-cpp
@@ -75,6 +84,13 @@ ifeq "${ENABLE_DEBUGGING}" "yes"
CFLAGS += -DDEBUG_HAL=1 -DDEBUG_PKCS11=1
endif
+ifeq "${ENABLE_OWN_SQLITE_LIBRARY}" "yes"
+ CFLAGS += -I${SQLITE3_DIR}
+ SOFLAGS += ${SQLITE3_DIR}/libsqlite3.a
+else
+ SOFLAGS += -lsqlite3
+endif
+
ifndef OBJCOPY
OBJCOPY := objcopy
endif
@@ -100,7 +116,7 @@ pkcs11.o: pkcs11.c schema.h attributes.h
${CC} ${CFLAGS} -c $<
pkcs11.so: pkcs11.o ${LIBS}
- ${CC} ${CFLAGS} -shared -o $@ ${SOFLAGS} $^
+ ${CC} ${CFLAGS} -shared -o $@ ${SOFLAGS} ${LDFLAGS} $^
libpkcs11.so: pkcs11.so
${OBJCOPY} -w -G 'C_*' $< $@
@@ -109,7 +125,7 @@ p11util.o: p11util.c schema.h
${CC} ${CFLAGS} -c $<
p11util: p11util.o ${LIBS}
- ${CC} ${CFLAGS} -o $@ $^
+ ${CC} ${CFLAGS} -o $@ ${LDFLAGS} $^
tags: TAGS
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the Commits
mailing list