diff options
author | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2009-10-24 19:21:41 +0200 |
---|---|---|
committer | Thorbjørn Lindeijer <bjorn@lindeijer.nl> | 2009-10-24 19:21:41 +0200 |
commit | a35fed28f926aa3b69e57f1d2bef7cf10c0a8ad2 (patch) | |
tree | 6d73902ea870cec48b09336097ba52530f07cb34 | |
parent | c3ac3fb3b95d0abcd2cbc51e8ff1f2498cc6841b (diff) | |
download | mana-client-a35fed28f926aa3b69e57f1d2bef7cf10c0a8ad2.tar.gz mana-client-a35fed28f926aa3b69e57f1d2bef7cf10c0a8ad2.tar.bz2 mana-client-a35fed28f926aa3b69e57f1d2bef7cf10c0a8ad2.tar.xz mana-client-a35fed28f926aa3b69e57f1d2bef7cf10c0a8ad2.zip |
Changed default supported server to manaserv
When you'd like a client for the eAthena server, pass
--with-server=eathena to configure.
-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 |