From e2e0f8f2b595122c1f8acb3b3a46501f96a2b218 Mon Sep 17 00:00:00 2001 From: Jack Lloyd Date: Thu, 17 Sep 2015 17:08:01 -0400 Subject: Handle dependencies re static linking. GH #279 Previously we were hanging on the type destructors to pull in the relevant objects. However that fails in many simple cases where the object is never deleted. For every type involved in the algo registry add static create and providers functions to access the algo registry. Modify lookup.h to be inline and call those functions, and move a few to sub-headers (eg, get_pbkdf going to pbkdf.h). So accessing the registry involves going through the same file that handles the initialization, so there is no way to end up with missing objs. --- src/lib/kdf/kdf2/kdf2.cpp | 1 - 1 file changed, 1 deletion(-) (limited to 'src/lib/kdf/kdf2') diff --git a/src/lib/kdf/kdf2/kdf2.cpp b/src/lib/kdf/kdf2/kdf2.cpp index 1b1c3638a..df2b7a91c 100644 --- a/src/lib/kdf/kdf2/kdf2.cpp +++ b/src/lib/kdf/kdf2/kdf2.cpp @@ -5,7 +5,6 @@ * Botan is released under the Simplified BSD License (see license.txt) */ -#include #include namespace Botan { -- cgit v1.2.3