mirror of
https://github.com/chris2511/xca.git
synced 2026-09-12 19:51:05 +05:00
The DbTransaction class automatically rolls back when the scope is left (destructor) and no commit happenned. Every transaction begin will increment the counter, each commit/rollback will decrement it. Only if all transactions finished with a commit, a final database commit will be performed.
19 lines
545 B
Makefile
19 lines
545 B
Makefile
|
|
ifeq ($(TOPDIR),)
|
|
TOPDIR=..
|
|
BUILD=..
|
|
endif
|
|
|
|
MOCNAMES=db_crl db_key db_temp db_x509 db_x509req db_x509super db_base db_token\
|
|
pki_temp pki_x509 pki_crl pki_x509req pki_key pki_x509super pki_pkcs12 \
|
|
pki_base pki_multi pki_evp pki_scard pass_info pki_pkcs7 main
|
|
NAMES=$(MOCNAMES) asn1int oid x509rev asn1time version \
|
|
x509v3ext func load_obj x509name db \
|
|
pk11_attribute pkcs11 pkcs11_lib Passwd builtin_curves entropy sql
|
|
|
|
|
|
OBJS=$(patsubst %, %.o, $(NAMES)) $(patsubst %, moc_%.o, $(MOCNAMES))
|
|
|
|
include $(TOPDIR)/Rules.mak
|
|
sinclude .depend
|