diff options
Diffstat (limited to 'configure.ac')
-rwxr-xr-x | configure.ac | 8 |
1 files changed, 4 insertions, 4 deletions
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 |