summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authorZetok Zalbavar <zexavexxe@gmail.com>2017-01-02 15:16:00 +0000
committerZetok Zalbavar <zexavexxe@gmail.com>2017-01-05 09:32:08 +0000
commit69e1b99b1d29f6089334a8af8e7f87666fe8bb9e (patch)
tree5c5b27b2f6821616e36015dba9ebdc779e741966 /INSTALL.md
parentf3469070fe899e8e4fd88665386a55bad9f77cd8 (diff)
docs(INSTALL): Bring back autotools instructions
Reverted, since apparently cmake is not supposed to be used for things other than testing/development and causes client build failures. Apparently making it work for clients would require complicating maintenance, which clearly can't be done. This reverts commit 48ddb115995f2bb55a736ae4cc54c70f3d34eeb4.
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md8
1 files changed, 5 insertions, 3 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 0ed6d881..d4e648ef 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -119,11 +119,13 @@ sudo ldconfig
119 119
120##### Compile toxcore 120##### Compile toxcore
121 121
122Then clone this repo, run `cmake`, and install `toxcore` system-wide: 122Then clone this repo, generate makefile, and install `toxcore` system-wide:
123
123```bash 124```bash
124git clone https://github.com/TokTok/c-toxcore.git c-toxcore 125git clone https://github.com/TokTok/c-toxcore.git c-toxcore
125cd c-toxcore 126cd c-toxcore
126cmake . 127autoreconf -i
128./configure
127make 129make
128sudo make install 130sudo make install
129``` 131```
@@ -461,7 +463,7 @@ cd ..
461 463
462You can also use a precompiled win32 binary of libsodium, however you will have to place the files in places where they can be found, i.e., dll's go to /bin headers to /include and libraries to /lib directories in your MinGW shell. 464You can also use a precompiled win32 binary of libsodium, however you will have to place the files in places where they can be found, i.e., dll's go to /bin headers to /include and libraries to /lib directories in your MinGW shell.
463 465
464Next, install toxcore library, should either clone this repo by using git, or just download a [zip of current Master branch](https://github.com/TokTok/toxcore/archive/master.zip) and extract it somewhere. 466Next, install toxcore library, should either clone this repo by using git, or just download a [zip of current Master branch](https://github.com/TokTok/c-toxcore/archive/master.zip) and extract it somewhere.
465 467
466Assuming that you now have the sources in the toxcore directory: 468Assuming that you now have the sources in the toxcore directory:
467 469