diff options
author | lloyd <[email protected]> | 2008-10-12 05:58:23 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2008-10-12 05:58:23 +0000 |
commit | 109cb25ffbb58ab2dcceef7777eee4c6b60a7982 (patch) | |
tree | ca4557bc0a2e77d2b747f04c0c8fb52ef02c4518 /src/math | |
parent | 8efcb908cca5d9aac801221a74c8c1e849066207 (diff) |
Rename the TR1 choice macros to BOTAN_USE_STD_TR1 and BOTAN_USE_BOOST_TR1.
If neither is defined when build.h is included, choose Boost.
Reorganize build.h so it is easier to find things, in particular move all
of the interesting toggles to the top of the file and all of the long
lists of modules and feature test macros to the end.
Diffstat (limited to 'src/math')
-rw-r--r-- | src/math/gfpmath/gfp_element.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/math/gfpmath/gfp_element.h b/src/math/gfpmath/gfp_element.h index b168d424a..ab0e0e5ab 100644 --- a/src/math/gfpmath/gfp_element.h +++ b/src/math/gfpmath/gfp_element.h @@ -16,12 +16,12 @@ #include <botan/gfp_modulus.h> #include <iostream> -#if defined(BOTAN_USE_TR1_SHARED_PTR) +#if defined(BOTAN_USE_STD_TR1) #include <tr1/memory> -#elif defined(BOTAN_USE_BOOST_TR1_SHARED_PTR) +#elif defined(BOTAN_USE_BOOST_TR1) #include <boost/tr1/memory.hpp> #else - #error "Please choose a shared_ptr implementation" + #error "Please choose a TR1 implementation in build.h" #endif namespace Botan { |