diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-02-15 17:03:42 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-02-15 19:26:39 -0800 |
commit | a0558a87b484347a994c9fbaaa91fbbef270953c (patch) | |
tree | f96640fc83700b8e9a69b2d1cb0890a0ab61920a /dive.h | |
parent | 306d503528fa116020cbfa57d24cb11bb5df9c14 (diff) | |
download | subsurface-a0558a87b484347a994c9fbaaa91fbbef270953c.tar.gz |
Get the SHA1 routines from git instead of openssl
..they are of a higher quality anyway, and this way we have one less
library to worry about. And this way there is nobody who can claim that
openssl is not a system library and thus not compatible with the GPL.
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'dive.h')
-rw-r--r-- | dive.h | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -9,7 +9,8 @@ #include <glib.h> #include <glib/gstdio.h> #include <libxml/tree.h> -#include <openssl/sha.h> + +#include "sha1.h" #define O2_IN_AIR 209 // permille #define N2_IN_AIR 781 |