summaryrefslogtreecommitdiff
path: root/Config
diff options
context:
space:
mode:
authorAdam <Adam@anope.org>2015-01-05 16:31:09 -0500
committerAdam <Adam@anope.org>2015-01-05 19:00:51 -0500
commitd79d8e2608e304760c42bdf87502e3bc51781b88 (patch)
tree179913b8b328f88d52d84c3453fceb28a2d63422 /Config
parent8ab1c71d7dc7a0d47e5711dc72e3fc9c3ee850bb (diff)
parentc46ec39e5088119cd21f5f7e16e64e61a876ca20 (diff)
Merge branch '2.0' into 2.1
Conflicts: CMakeLists.txt include/modules.h include/serialize.h modules/commands/bs_assign.cpp modules/commands/bs_badwords.cpp modules/commands/bs_bot.cpp modules/commands/bs_control.cpp modules/commands/bs_kick.cpp modules/commands/cs_access.cpp modules/commands/cs_akick.cpp modules/commands/cs_drop.cpp modules/commands/cs_entrymsg.cpp modules/commands/cs_flags.cpp modules/commands/cs_info.cpp modules/commands/cs_invite.cpp modules/commands/cs_kick.cpp modules/commands/cs_mode.cpp modules/commands/cs_register.cpp modules/commands/cs_seen.cpp modules/commands/cs_set.cpp modules/commands/cs_suspend.cpp modules/commands/cs_topic.cpp modules/commands/cs_unban.cpp modules/commands/cs_xop.cpp modules/commands/hs_del.cpp modules/commands/hs_list.cpp modules/commands/hs_request.cpp modules/commands/ms_ignore.cpp modules/commands/ms_send.cpp modules/commands/ns_recover.cpp modules/commands/ns_register.cpp modules/commands/ns_suspend.cpp modules/commands/os_dns.cpp modules/commands/os_noop.cpp modules/commands/os_oper.cpp modules/commands/os_session.cpp modules/database/db_sql_live.cpp modules/encryption/enc_bcrypt.cpp modules/extra/m_ldap_authentication.cpp modules/extra/m_ldap_oper.cpp modules/fantasy.cpp modules/m_dnsbl.cpp modules/m_sasl.cpp modules/protocol/hybrid.cpp modules/protocol/inspircd20.cpp modules/protocol/unreal.cpp modules/pseudoclients/chanserv.cpp modules/pseudoclients/nickserv.cpp modules/webcpanel/pages/chanserv/access.cpp modules/webcpanel/webcpanel.cpp modules/webcpanel/webcpanel.h src/command.cpp src/messages.cpp src/modulemanager.cpp src/regchannel.cpp src/serialize.cpp
Diffstat (limited to 'Config')
-rwxr-xr-xConfig39
1 files changed, 3 insertions, 36 deletions
diff --git a/Config b/Config
index 65dcc4585..3bd1ed976 100755
--- a/Config
+++ b/Config
@@ -162,42 +162,9 @@ done
which cmake > /dev/null
if [ $? -ne 0 ] ; then
clear
- if exists "cmake-bin" ; then :
- else
- echo "Anope requires CMake 2.4 or newer, which can be downloaded at http://cmake.org"
- echo "If you have installed CMake already, ensure it is in your PATH environment variable."
-
- if [ `uname` = "Linux" ] ; then
-
- echo ""
- echo "Config can attempt to install CMake for you now, which"
- echo "will take approximately 50 MB of disk space."
- echo "Would you like to install CMake now?"
- echo2 "[y] "
- read YN
- if [ "$YN" = "n" ] ; then
- exit 0
- fi
-
- echo "Downloading CMake... this may take a minute or two."
- wget -q http://anope.org/cmake/linux-i386.php -O cmake-bin.tar.gz
- if [ $? -ne 0 ] ; then
- rm -f cmake-bin.tar.gz
- echo "Unable to download CMake"
- exit 0
- fi
- mkdir -p cmake-bin
- tar zxf cmake-bin.tar.gz -C cmake-bin
- rm -f cmake-bin.tar.gz
- echo "Done!"
- else
- exit 0
- fi
- fi
-
- CMAKE_BIN=`find cmake-bin -name cmake`
- CMAKE_BIN="`pwd`/`dirname $CMAKE_BIN`"
- PATH="$PATH:$CMAKE_BIN"
+ echo "Anope requires CMake 2.4 or newer, which can be downloaded at http://cmake.org or through your system's package manager."
+ echo "If you have installed CMake already, ensure it is in your PATH environment variable."
+ exit 0
fi
###########################################################################