diff options
author | Adam <Adam@anope.org> | 2014-10-05 16:10:52 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2014-10-06 14:06:36 -0400 |
commit | 8d40a750cc5b86b01ee5f88230fac79398acdf63 (patch) | |
tree | f5e84a56a00db2d863b729e2d31ca75acff12590 /docs/INSTALL | |
parent | 6a3f7c01b1232830f92c8ad6510071852d2abb30 (diff) |
Update INSTALL to reflect cmake requirement
Diffstat (limited to 'docs/INSTALL')
-rw-r--r-- | docs/INSTALL | 23 |
1 files changed, 4 insertions, 19 deletions
diff --git a/docs/INSTALL b/docs/INSTALL index 6d614d0e6..0a923ef97 100644 --- a/docs/INSTALL +++ b/docs/INSTALL @@ -21,26 +21,19 @@ Note: You should also read the README and FAQ files! http://www.anope.org/ - Anope can be built one of two ways. The recommended way is to use CMake. - You can check if CMake is already installed on your system using the - command: + Anope requires cmake to build. You can check if CMake is already + installed on your system using the command: cmake --version If it's installed, you will get a line that says something similar to - "cmake version 2.6-patch 1". If the version is less than 2.4 or you get + "cmake version 2.8.12.2". If the version is less than 2.4 or you get an error saying the command was not found, you will not be able to use CMake unless you install it yourself into your home directory. CMake can be downloaded from: http://www.cmake.org/cmake/resources/software.html - If you are unable to install CMake yourself (either due to lack of space - or restrictions by your hosting provider), you still have the alternative - to use the provided configure script. This option is not recommended and - will eventually be phased out, but is provided for compatibility for those - lacking CMake. - Next, unpack the package in your home directory, and go into the created directory. @@ -51,16 +44,8 @@ Note: You should also read the README and FAQ files! Now type ./Config to start the configuration script. It will ask you a few questions, and figure out how to compile Anope on your system. If you are unsure about the answer to a question, use the default value. - The question to using configure or cmake depends on your decision from - above. If you have CMake and wish to use it, answer with cmake, otherwise - answer with configure. - - You can now type make to compile Anope. If there are errors in the - Makefile, *try to use gmake* instead. If it still doesn't work, you (or - the system administrator if it's a shell) must install GNU make. You may - find it at ftp://prep.ai.mit.edu/pub/gnu/. - Now type make install (or gmake install; see above). This will install + Now cd build and type make and make install. This will install all the needed files in the paths you specified with the configure script, and setup file permissions. You should ensure that the data directory is not accessible by other users, as malicious users may |