diff options
author | lloyd <[email protected]> | 2009-07-07 20:37:27 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-07-07 20:37:27 +0000 |
commit | 5dd07b73e4e5c8f88f9b64273e8e4ab0862a0db8 (patch) | |
tree | 5416756616765df2f091905410724f3c66725caf /src/block | |
parent | 431223161669026caf687c6fd69625546a4c46fa (diff) |
CPU-specific engines are now only loaded if something depends on them,
and all CPU-specific implementations now depend on the appropriate engine
module.
The most common problem before with this was that the SSE2 module was built,
but the sole SSE2 code (SHA-1) was not (for instance, on an i686). This would
cause a compile warning about the unused request object.
Preventing unused engines from being built will also (very slightly) speed
up the lookup process on most system.
Diffstat (limited to 'src/block')
-rw-r--r-- | src/block/serpent_ia32/info.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/block/serpent_ia32/info.txt b/src/block/serpent_ia32/info.txt index d6a29229d..3a2fa12ff 100644 --- a/src/block/serpent_ia32/info.txt +++ b/src/block/serpent_ia32/info.txt @@ -11,6 +11,7 @@ serp_ia32.h </add> <requires> +ia32_eng asm_ia32 utils </requires> |