diff options
| author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-09-10 18:07:48 +0000 |
|---|---|---|
| committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-09-10 18:07:48 +0000 |
| commit | c39b06866eea2a17785d18e0c24f915606bd25bc (patch) | |
| tree | ba317f5cd3dfe35e8aab34fffc319712cfd50d04 /main.cpp | |
| parent | fix problem sending the last cent with sub-cent fractional change (diff) | |
| download | discoin-c39b06866eea2a17785d18e0c24f915606bd25bc.tar.xz discoin-c39b06866eea2a17785d18e0c24f915606bd25bc.zip | |
fix build on non-intel architectures, thanks teknohog
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@152 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'main.cpp')
| -rw-r--r-- | main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2767,7 +2767,7 @@ inline void SHA256Transform(void* pstate, void* pinput, const void* pinit) static const int NPAR = 32; extern void Double_BlockSHA256(const void* pin, void* pout, const void* pinit, unsigned int hash[8][NPAR], const void* init2); -#ifdef __GNUC__ +#if defined(__GNUC__) && defined(CRYPTOPP_X86_ASM_AVAILABLE) void CallCPUID(int in, int& aret, int& cret) { int a, c; |