summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authoriphydf <iphydf@users.noreply.github.com>2018-01-20 14:22:34 +0000
committeriphydf <iphydf@users.noreply.github.com>2018-01-20 19:05:53 +0000
commitd7583a719a73cf5ec75da7839b2fd2c11d676c45 (patch)
treec7dd6f9ba3e2e937dca98d4c9eb7ae30a0c68eb4 /INSTALL.md
parentc5976e37eaadf663dc3d0c18376ea023355048f3 (diff)
Remove nTox from the repo.
It's a maintenance burden nobody uses. Let's make toxic the official console client, instead.
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md23
1 files changed, 1 insertions, 22 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 818edf06..bd2f02ef 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -19,7 +19,6 @@
19 - [A/V support](#av-support) 19 - [A/V support](#av-support)
20 - [libtoxav](#libtoxav) 20 - [libtoxav](#libtoxav)
21 - [Bootstrap daemon](#bootstrap-daemon) 21 - [Bootstrap daemon](#bootstrap-daemon)
22 - [nTox](#ntox-test-cli)
23 22
24## Installation 23## Installation
25 24
@@ -400,7 +399,7 @@ And finally we will build Tox:
400git clone https://github.com/TokTok/c-toxcore.git c-toxcore 399git clone https://github.com/TokTok/c-toxcore.git c-toxcore
401cd c-toxcore 400cd c-toxcore
402./autogen.sh 401./autogen.sh
403./configure --host="$WINDOWS_TOOLCHAIN" --prefix="$PREFIX_DIR" --disable-ntox --disable-tests --disable-testing --with-dependency-search="$PREFIX_DIR" --disable-shared --enable-static 402./configure --host="$WINDOWS_TOOLCHAIN" --prefix="$PREFIX_DIR" --disable-tests --disable-testing --with-dependency-search="$PREFIX_DIR" --disable-shared --enable-static
404make 403make
405make install 404make install
406cd .. 405cd ..
@@ -476,7 +475,6 @@ make install
476 - --disable-silent-rules verbose build output (undo: "make V=0") 475 - --disable-silent-rules verbose build output (undo: "make V=0")
477 - --disable-tests build unit tests (default: auto) 476 - --disable-tests build unit tests (default: auto)
478 - --disable-av disable A/V support (default: auto) see: [libtoxav](#libtoxav) 477 - --disable-av disable A/V support (default: auto) see: [libtoxav](#libtoxav)
479 - --enable-ntox build nTox client (default: no) see: [nTox](#ntox)
480 - --enable-daemon build DHT bootstrap daemon (default=no) see: [Bootstrap daemon](#bootstrap-daemon) 478 - --enable-daemon build DHT bootstrap daemon (default=no) see: [Bootstrap daemon](#bootstrap-daemon)
481 - --enable-dht-bootstrap build DHT bootstrap utility (default=disabled) 479 - --enable-dht-bootstrap build DHT bootstrap utility (default=disabled)
482 - --enable-shared[=PKGS] build shared libraries [default=yes] 480 - --enable-shared[=PKGS] build shared libraries [default=yes]
@@ -556,22 +554,3 @@ OS X non-homebrew:
556Grab the following [package](http://www.hyperrealm.com/libconfig/), uncompress and install 554Grab the following [package](http://www.hyperrealm.com/libconfig/), uncompress and install
557 555
558See this [readme](other/bootstrap_daemon/README.md) on how to set up the bootstrap daemon. 556See this [readme](other/bootstrap_daemon/README.md) on how to set up the bootstrap daemon.
559
560
561### nTox test cli:
562
563nTox is disabled by default. You can enable it by adding --enable-ntox argument to ./configure script like so:
564```bash
565./configure --enable-ntox
566```
567There is one dependency required for nTox: libncurses.
568
569Install on fedora:
570```bash
571yum install ncurses-devel
572```
573
574Install on ubuntu:
575```bash
576sudo apt-get install ncurses-dev
577```