From d00f6b24e5349d8d37868b8f4451b1dc9b38767e Mon Sep 17 00:00:00 2001 From: Stef Walter Date: Wed, 10 Jul 2013 15:22:00 +0200 Subject: Build with -fno-common to catch definition problems Fix some global variables not declared as extern https://bugs.freedesktop.org/show_bug.cgi?id=66015 --- p11-kit/virtual.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'p11-kit') diff --git a/p11-kit/virtual.h b/p11-kit/virtual.h index f1fb676..d29ea49 100644 --- a/p11-kit/virtual.h +++ b/p11-kit/virtual.h @@ -45,9 +45,9 @@ typedef struct { p11_destroyer lower_destroy; } p11_virtual; -CK_X_FUNCTION_LIST p11_virtual_base; +extern CK_X_FUNCTION_LIST p11_virtual_base; -CK_X_FUNCTION_LIST p11_virtual_stack; +extern CK_X_FUNCTION_LIST p11_virtual_stack; void p11_virtual_init (p11_virtual *virt, CK_X_FUNCTION_LIST *funcs, -- cgit v1.1