Skip to content

Commit

Permalink
Initial util_uri.c separation
Browse files Browse the repository at this point in the history
  • Loading branch information
mtrojnar committed Jan 25, 2025
1 parent dba1add commit 6dc51cf
Show file tree
Hide file tree
Showing 7 changed files with 1,366 additions and 1,159 deletions.
6 changes: 3 additions & 3 deletions src/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ CLEANFILES = libp11.pc
EXTRA_DIST = Makefile.mak libp11.rc.in pkcs11.rc.in

noinst_HEADERS= libp11-int.h pkcs11.h p11_pthread.h
include_HEADERS= libp11.h p11_err.h
include_HEADERS= libp11.h p11_err.h util.h
if ENABLE_STATIC_ENGINE
lib_LTLIBRARIES = libp11.la libpkcs11.la
else
Expand Down Expand Up @@ -38,8 +38,8 @@ else
libp11_la_LDFLAGS += -export-symbols "$(srcdir)/libp11.exports"
endif

pkcs11_la_SOURCES = eng_front.c eng_back.c eng_parse.c eng_err.c \
engine.h eng_err.h pkcs11.exports
pkcs11_la_SOURCES = eng_front.c eng_back.c eng_err.c util_uri.c \
engine.h eng_err.h util.h pkcs11.exports
if WIN32
pkcs11_la_SOURCES += pkcs11.rc
else
Expand Down
2 changes: 1 addition & 1 deletion src/Makefile.mak
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ LIBP11_OBJECTS = libpkcs11.obj p11_attr.obj p11_cert.obj \
LIBP11_LIB = libp11.lib
LIBP11_TARGET = libp11.dll

PKCS11_OBJECTS = eng_front.obj eng_back.obj eng_parse.obj eng_err.obj
PKCS11_OBJECTS = eng_front.obj eng_back.obj eng_err.obj util_uri.obj
PKCS11_TARGET = pkcs11.dll

OBJECTS = $(LIBP11_OBJECTS) $(PKCS11_OBJECTS)
Expand Down
Loading

0 comments on commit 6dc51cf

Please sign in to comment.