Make it possible to turn off compilation of hardware support through

the configuration parameter 'no-hw'.
This commit is contained in:
Richard Levitte
2000-06-30 11:02:02 +00:00
parent 93e147dd32
commit ae02fc5348
6 changed files with 19 additions and 1 deletions

View File

@@ -130,6 +130,8 @@ typedef struct engine_st
/* Returns a structure of software only methods (the default). */
ENGINE *ENGINE_openssl();
#ifndef NO_HW
#ifndef NO_HW_CSWIFT
/* Returns a structure of cswift methods ... NB: This can exist and be
* "used" even on non-cswift systems because the "init" will fail if the
@@ -146,6 +148,8 @@ ENGINE *ENGINE_ncipher();
ENGINE *ENGINE_atalla();
#endif /* !NO_HW_ATALLA */
#endif /* !NO_HW */
#ifdef __cplusplus
}
#endif