diff options
Diffstat (limited to 'p11-kit/modules.c')
-rw-r--r-- | p11-kit/modules.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/p11-kit/modules.c b/p11-kit/modules.c index 85eb53e..f1b992a 100644 --- a/p11-kit/modules.c +++ b/p11-kit/modules.c @@ -289,6 +289,16 @@ alloc_module_unlocked (void) return mod; } +#ifdef __GNUC__ +bool p11_proxy_module_check (CK_FUNCTION_LIST_PTR module) __attribute__((weak)); + +bool +p11_proxy_module_check (CK_FUNCTION_LIST_PTR module) +{ + return false; +} +#endif + static CK_RV dlopen_and_get_function_list (Module *mod, const char *path, |