diff options
-rw-r--r-- | INSTALL | 2 | ||||
-rwxr-xr-x | configure.ac | 8 |
2 files changed, 5 insertions, 5 deletions
@@ -45,7 +45,7 @@ you to figure this out. 2. Compiling And Installing Mana -========================================== +================================ 1) Go to the directory you have extracted the source to. 2) If you've cloned the Git repository, run "autoreconf -i" to generate diff --git a/configure.ac b/configure.ac index 5a45e288..53f6d489 100755 --- a/configure.ac +++ b/configure.ac @@ -109,17 +109,17 @@ AC_ARG_WITH( AS_HELP_STRING( [--with-server=ARG], [which server to use [[ARG=manaserv,eathena]] - [(default=eathena)]] + [(default=manaserv)]] ), [if test "$withval" = "yes"; then - # default is eathena - with_server="eathena" + # default is manaserv + with_server="manaserv" elif test "$withval" = "no"; then AC_MSG_ERROR([$PACKAGE_NAME cannot run without a server.]) else with_server="$withval" fi], - [with_server="eathena"] + [with_server="manaserv"] ) if test "$with_server" = "manaserv"; then |