summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorirungentoo <irungentoo@gmail.com>2015-07-10 23:19:52 -0400
committerirungentoo <irungentoo@gmail.com>2015-07-10 23:19:52 -0400
commit7225725bbfdc5b1233a9403d0621ebab9f23e6dc (patch)
tree5e60d5e8fc81424c8d606020e2c0bb72728f05ff
parent964233b0bf8240e70bb8bfddce17262756171231 (diff)
parentf0bdb94a3b25dffc668bd822e6ef9e9394c69ff6 (diff)
Merge branch 'patch-2' of https://github.com/linux-modder/toxcore
-rw-r--r--INSTALL.md11
1 files changed, 8 insertions, 3 deletions
diff --git a/INSTALL.md b/INSTALL.md
index 1fa99100..3ea67461 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -57,9 +57,10 @@ sudo apt-get install build-essential libtool autotools-dev automake checkinstall
57On Fedora: 57On Fedora:
58 58
59```bash 59```bash
60yum groupinstall "Development Tools" 60dnf groupinstall "Development Tools"
61yum install libtool autoconf automake check check-devel 61dnf install libtool autoconf automake check check-devel
62``` 62```
63Using dnf install @"Development Tools" is also valid and slightly shorter / cleaner way, also @"Rpm Development Tools" would carry the remaining dependencies listed here.
63 64
64On SunOS: 65On SunOS:
65 66
@@ -104,7 +105,11 @@ cd ..
104 105
105If your default prefix is /usr/local and you happen to get an error that says "error while loading shared libraries: libtoxcore.so.0: cannot open shared object file: No such file or directory", then you can try running ```sudo ldconfig```. If that doesn't fix it, run: 106If your default prefix is /usr/local and you happen to get an error that says "error while loading shared libraries: libtoxcore.so.0: cannot open shared object file: No such file or directory", then you can try running ```sudo ldconfig```. If that doesn't fix it, run:
106``` 107```
107echo '/usr/local/lib/' | sudo tee -a /etc/ld.so.conf.d/locallib.conf 108echo '/usr/local/lib/' | sudo tee -a /etc/ld.so.conf.d/locallibs.conf
109
110OR in the event you have no locallibs.conf file run:
111
112echo '/usr/local/lib/' | sudo tee -a /etc/ld.so.conf
108sudo ldconfig 113sudo ldconfig
109``` 114```
110 115