diff options
| author | 2009-11-12 16:43:12 +0000 | |
|---|---|---|
| committer | 2009-11-12 16:43:12 +0000 | |
| commit | 1399e04897c36938c9cbf1b56bcebc29379a8071 (patch) | |
| tree | f08d9907c502d31f417612495d1cabab54c08b91 /src/modules | |
| parent | first shy implementation of dcc video; highly instable and bandwitdth-sucker,... (diff) | |
| download | KVIrc-1399e04897c36938c9cbf1b56bcebc29379a8071.tar.gz KVIrc-1399e04897c36938c9cbf1b56bcebc29379a8071.tar.bz2 KVIrc-1399e04897c36938c9cbf1b56bcebc29379a8071.zip | |
fix for #605; debian-based distros needs libcrypto++ >= 5.5.2-1
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@3598 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/str/libkvistr.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/modules/str/libkvistr.cpp b/src/modules/str/libkvistr.cpp index 2c73af4b9..3eb7b1a8f 100644 --- a/src/modules/str/libkvistr.cpp +++ b/src/modules/str/libkvistr.cpp @@ -47,14 +47,14 @@ // but we can ignore that and therefore silence the warnings. #define CRYPTOPP_ENABLE_NAMESPACE_WEAK 1 // Hashes (should cover most cases) - #include <crypto++/md2.h> - #include <crypto++/md4.h> - #include <crypto++/md5.h> - #include <crypto++/sha.h> - #include <crypto++/ripemd.h> - #include <crypto++/crc.h> + #include <cryptopp/md2.h> + #include <cryptopp/md4.h> + #include <cryptopp/md5.h> + #include <cryptopp/sha.h> + #include <cryptopp/ripemd.h> + #include <cryptopp/crc.h> // Encoding - #include <crypto++/hex.h> + #include <cryptopp/hex.h> // additional #include <string> // template function |
