Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: Make sure to expose p11_kit_check_version #648

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions p11-kit/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ inc_HEADERS += \
p11-kit/pin.h \
p11-kit/remote.h \
p11-kit/uri.h \
p11-kit/version.h \
$(NULL)

COMMON_SRCS = \
Expand Down
1 change: 1 addition & 0 deletions p11-kit/libp11-kit-0.dll.def
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ C_GetInterface
C_GetInterfaceList
p11_kit_be_loud
p11_kit_be_quiet
p11_kit_check_version
p11_kit_config_option
p11_kit_finalize_module
p11_kit_finalize_registered
Expand Down
7 changes: 7 additions & 0 deletions p11-kit/libp11-kit.map
Original file line number Diff line number Diff line change
Expand Up @@ -105,3 +105,10 @@ LIBP11_KIT_1.0 {
local:
*;
};

LIBP11_KIT_1.1 {
global:
p11_kit_check_version;
local:
*;
} LIBP11_KIT_1.0;
Loading