blob: 868dd3a5165f60582fb341da2752d5c4d663d4c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
--- branches/0.6.5/kadu-core/protocol.h 2009/05/14 16:31:06 6636
+++ branches/0.6.5/kadu-core/protocol.h 2009/05/14 16:32:15 6637
@@ -4,9 +4,9 @@
#include <QtCore/QDateTime>
#include <QtCore/QObject>
-#ifdef __sun__
+#if defined(__sun__ ) || defined(__linux__)
#include <sys/types.h>
-#endif /* __sun__ */
+#endif /* __sun__ || __linux__ */
#ifdef _MSC_VER
#include "kinttypes.h"
--- branches/0.6.5/kadu-core/protocol.h 2008/09/25 20:10:18 5602
+++ branches/0.6.5/kadu-core/protocol.h 2009/04/24 21:11:43 6584
@@ -14,6 +14,7 @@
#include "status.h"
#include "usergroup.h"
+#include <stdint.h>
typedef uint32_t UinType;
--- branches/0.6.5//modules/encryption/pkcs1_certificate.h 2009-07-25 15:26:05.000000000 -0400
+++ branches/0.6.5/modules/encryption/pkcs1_certificate.h 2009-07-25 15:26:27.000000000 -0400
@@ -26,6 +26,7 @@
#define PKCS1_CERTIFICATE_H
#include <QtCrypto>
+#include <stdint.h>
/**
* PKCS#1 certificate reader/writer (implemented according to the PKCS#1 v2.1 Specification).
|