summaryrefslogtreecommitdiff
path: root/INSTALL.md
diff options
context:
space:
mode:
authorUrras <urras@tox.im>2015-04-20 09:33:21 -0400
committerUrras <urras@tox.im>2015-04-20 09:33:21 -0400
commit41995efb4d4bbb6fd653fb623ba8c2f6641c8089 (patch)
treeb49a4ef3d6e317a4c90ea1714c667ee661337563 /INSTALL.md
parentf8087887feaf77577a345ae1be68776459613c03 (diff)
Fix markdown formatting
Diffstat (limited to 'INSTALL.md')
-rw-r--r--INSTALL.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/INSTALL.md b/INSTALL.md
index c2a8c0d9..549a3a4f 100644
--- a/INSTALL.md
+++ b/INSTALL.md
@@ -171,15 +171,21 @@ Different: libvpx (webm) libopus pkgconfig gettext
171(the libintl, from gettext, built into OS X 10.5 is missing libintl_setlocale, but the Macports build has it) 171(the libintl, from gettext, built into OS X 10.5 is missing libintl_setlocale, but the Macports build has it)
172 172
173Verify where libintl is on your system: (MacPorts puts it in /opt/local) 173Verify where libintl is on your system: (MacPorts puts it in /opt/local)
174$ for d in /usr/local/lib /opt/local/lib /usr/lib /lib; do ls -l $d/libintl.*; done 174```
175for d in /usr/local/lib /opt/local/lib /usr/lib /lib; do ls -l $d/libintl.*; done
176```
175 177
176Check if that copy has libintl_setlocale: 178Check if that copy has libintl_setlocale:
179```
177nm /opt/local/lib/libintl.8.dylib | grep _libintl_setlocale 180nm /opt/local/lib/libintl.8.dylib | grep _libintl_setlocale
181```
178 182
179Certain other tools may not be installed, or outdated, and should also be installed from MacPorts for simplicity: git cmake 183Certain other tools may not be installed, or outdated, and should also be installed from MacPorts for simplicity: git cmake
180 184
181If libsodium was installed with MacPorts, you may want to symlink the copy in /opt/local/lib to /usr/local/lib. That way you don't need special configure switches for toxcore to find libsodium, and every time MacPorts updates libsodium, the new version will be linked to toxcore every time you build: 185If libsodium was installed with MacPorts, you may want to symlink the copy in /opt/local/lib to /usr/local/lib. That way you don't need special configure switches for toxcore to find libsodium, and every time MacPorts updates libsodium, the new version will be linked to toxcore every time you build:
186```
182ln -s /opt/local/lib/libsodium.dylib /usr/local/lib/libsodium.dylib 187ln -s /opt/local/lib/libsodium.dylib /usr/local/lib/libsodium.dylib
188```
183 189
184Much of the build can then be done as for other platforms: git clone, and so on. Differences will be noted with (OS X 10.5 specific) 190Much of the build can then be done as for other platforms: git clone, and so on. Differences will be noted with (OS X 10.5 specific)
185 191
@@ -217,7 +223,9 @@ There is also a shell script called "osx_build_script_toxcore.txt" which automat
217 223
218If after running ./configure you get an error about core being unable to find libsodium (and you have installed it) run the following in place of ./configure; 224If after running ./configure you get an error about core being unable to find libsodium (and you have installed it) run the following in place of ./configure;
219 225
226```
220./configure --with-libsodium-headers=/usr/local/include/ --with-libsodium-libs=/usr/local/lib 227./configure --with-libsodium-headers=/usr/local/include/ --with-libsodium-libs=/usr/local/lib
228```
221 229
222Ensure you set the locations correctly depending on where you installed libsodium on your computer. 230Ensure you set the locations correctly depending on where you installed libsodium on your computer.
223 231