Build changes

- Add support for embedded Linux without X, dbus, udisks, ntp, etc.
- Misc minor changes
This commit is contained in:
Floris Bos 2020-05-25 00:36:16 +02:00
parent 71eefa47cf
commit 5b072f3196
13 changed files with 189 additions and 222 deletions

View file

@ -7,6 +7,11 @@
*/
#include <QCryptographicHash>
#ifdef Q_OS_DARWIN
typedef QCryptographicHash AcceleratedCryptographicHash;
#else
#include "openssl/sha.h"
class AcceleratedCryptographicHash
@ -22,4 +27,5 @@ protected:
SHA256_CTX _sha256;
};
#endif
#endif // ACCELERATEDCRYPTOGRAPHICHASH_H