This commit is contained in:
irungentoo 2015-07-10 23:19:52 -04:00
commit 7225725bbf
No known key found for this signature in database
GPG Key ID: 10349DC9BED89E98

View File

@ -57,9 +57,10 @@ sudo apt-get install build-essential libtool autotools-dev automake checkinstall
On Fedora:
```bash
yum groupinstall "Development Tools"
yum install libtool autoconf automake check check-devel
dnf groupinstall "Development Tools"
dnf install libtool autoconf automake check check-devel
```
Using dnf install @"Development Tools" is also valid and slightly shorter / cleaner way, also @"Rpm Development Tools" would carry the remaining dependencies listed here.
On SunOS:
@ -104,7 +105,11 @@ cd ..
If 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:
```
echo '/usr/local/lib/' | sudo tee -a /etc/ld.so.conf.d/locallib.conf
echo '/usr/local/lib/' | sudo tee -a /etc/ld.so.conf.d/locallibs.conf
OR in the event you have no locallibs.conf file run:
echo '/usr/local/lib/' | sudo tee -a /etc/ld.so.conf
sudo ldconfig
```