-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathinstall-tox.patch
78 lines (68 loc) · 2.21 KB
/
install-tox.patch
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
diff --git a/toxcore/toxav/audio.h b/toxcore/toxav/audio.h
index 5f9d7f7..e4b8f61 100644
--- a/toxcore/toxav/audio.h
+++ b/toxcore/toxav/audio.h
@@ -25,7 +25,7 @@
#include "../toxcore/logger.h"
#include "../toxcore/util.h"
-#include <opus.h>
+#include "opus.h"
#include <pthread.h>
#define AUDIO_JITTERBUFFER_COUNT 3
diff --git a/toxcore/toxav/groupav.h b/toxcore/toxav/groupav.h
index 1929b17..b791111 100644
--- a/toxcore/toxav/groupav.h
+++ b/toxcore/toxav/groupav.h
@@ -21,7 +21,7 @@
#include "../toxcore/group.h"
/* Audio encoding/decoding */
-#include <opus.h>
+#include "opus.h"
#define GROUP_AUDIO_PACKET_ID 192
diff --git a/toxcore/toxcore/crypto_core.m b/toxcore/toxcore/crypto_core.m
index 2e89896..5c4bb70 100644
--- a/toxcore/toxcore/crypto_core.m
+++ b/toxcore/toxcore/crypto_core.m
@@ -35,7 +35,7 @@
#ifndef VANILLA_NACL
/* We use libsodium by default. */
-#include <sodium.h>
+#include "sodium.h"
#else
#include <crypto_box.h>
#include <crypto_hash_sha256.h>
diff --git a/toxcore/toxcore/network.m b/toxcore/toxcore/network.m
index 386f8c1..b441273 100644
--- a/toxcore/toxcore/network.m
+++ b/toxcore/toxcore/network.m
@@ -457,7 +457,7 @@ void networking_poll(Networking_Core *net, void *userdata)
#ifndef VANILLA_NACL
/* Used for sodium_init() */
-#include <sodium.h>
+#include "sodium.h"
#endif
static uint8_t at_startup_ran = 0;
diff --git a/toxcore/toxencryptsave/toxencryptsave.m b/toxcore/toxencryptsave/toxencryptsave.m
index bd56e78..9e3413e 100644
--- a/toxcore/toxencryptsave/toxencryptsave.m
+++ b/toxcore/toxencryptsave/toxencryptsave.m
@@ -36,7 +36,7 @@
#include "crypto_pwhash_scryptsalsa208sha256/crypto_pwhash_scryptsalsa208sha256.h"
#define crypto_box_MACBYTES (crypto_box_ZEROBYTES - crypto_box_BOXZEROBYTES)
#else
-#include <sodium.h>
+#include "sodium.h"
#endif
#include <string.h>
diff --git a/toxcore/toxcore/crypto_core_mem.m b/toxcore/toxcore/crypto_core_mem.m
index 8d46998..156eea9 100644
--- a/toxcore/toxcore/crypto_core_mem.m
+++ b/toxcore/toxcore/crypto_core_mem.m
@@ -22,7 +22,7 @@
#ifndef VANILLA_NACL
/* We use libsodium by default. */
-#include <sodium.h>
+#include "sodium.h"
#else
#if defined(_WIN32) || defined(__WIN32__) || defined(WIN32)
#include <windows.h>