diff options
author | serg@serg.mylan <> | 2005-04-30 19:48:45 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2005-04-30 19:48:45 +0200 |
commit | 9c332d8d2a09782ebc773387556f85e63433cd1d (patch) | |
tree | 74e86b2737e0e781445fade0c11a388a26d923e5 /extra/yassl/taocrypt/src/integer.cpp | |
parent | 328f2e434a2289c9c9dcf0178c996f5269310391 (diff) | |
download | mariadb-git-9c332d8d2a09782ebc773387556f85e63433cd1d.tar.gz |
yassl changeset 2:
remove FIX_GCC_LINKING_PROBLEM and -DDEFINE_CXA_PURE_VIRTUAL
replace echo in configure.in with AC_MSG_WARN/AC_MSG_ERROR
don't set -DUSE_MYSYS_NEW for gcc 2.95
set $USE_MYSYS_NEW even if CXX is g++
yassl bugfixes
instantiate all yassl templates explicitly
Diffstat (limited to 'extra/yassl/taocrypt/src/integer.cpp')
-rw-r--r-- | extra/yassl/taocrypt/src/integer.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/extra/yassl/taocrypt/src/integer.cpp b/extra/yassl/taocrypt/src/integer.cpp index 513bf3e6b20..20a968d78e3 100644 --- a/extra/yassl/taocrypt/src/integer.cpp +++ b/extra/yassl/taocrypt/src/integer.cpp @@ -4172,3 +4172,12 @@ Integer CRT(const Integer &xp, const Integer &p, const Integer &xq, } // namespace +#ifdef __GNUC__ +template TaoCrypt::Integer TaoCrypt::StringToInteger<char>(char const*); +template TaoCrypt::Integer TaoCrypt::StringToInteger<wchar_t>(wchar_t const*); +template class TaoCrypt::EuclideanDomainOf<TaoCrypt::Integer>; +template class TaoCrypt::AbstractEuclideanDomain<TaoCrypt::Integer>; +template unsigned int TaoCrypt::DivideThreeWordsByTwo<unsigned int, TaoCrypt::DWord>(unsigned int*, unsigned int, unsigned int, TaoCrypt::DWord*); +#endif + + |