diff options
author | Matt Johnston <matt@ucc.asn.au> | 2010-07-21 12:38:46 +0000 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2010-07-21 12:38:46 +0000 |
commit | 4d050c34cb96d07bef509eb537cde21faa987dbb (patch) | |
tree | d516575e1dbb9976acce596e0b21061dc5de458c /includes.h | |
parent | a8c28714cddd45cdaadcce2fef5cb0325500b33f (diff) |
Use system libtomcrypt/libtommath if available. Doesn't currently
build due to clash in rsa_key identifier.
--HG--
extra : convert_revision : c9a4726d1c89e17ee8e96801d1aaa8049216aae1
Diffstat (limited to 'includes.h')
-rw-r--r-- | includes.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -120,8 +120,14 @@ #include <libgen.h> #endif +#ifdef BUNDLED_LIBTOM #include "libtomcrypt/src/headers/tomcrypt.h" #include "libtommath/tommath.h" +#else +#include <tomcrypt.h> +#include <tommath.h> +#endif + #include "compat.h" #include "fake-rfc2553.h" |