remove the '0' default for serveruid and servergid

This commit is contained in:
Gunter Labes 2007-09-11 08:04:25 +00:00
parent 37e1224951
commit b8743aec39

View file

@ -201,13 +201,13 @@ AC_SUBST([fifodir])
AC_ARG_WITH([server-uid],
AS_HELP_STRING([--with-server-uid], [user id of the user who runs wesnothd]),
[serveruid=$withval],
[serveruid=0])
[serveruid=""])
AC_SUBST([serveruid])
AC_ARG_WITH([server-gid],
AS_HELP_STRING([--with-server-gid], [group id of the user who runs wesnothd]),
[servergid=$withval],
[servergid=0])
[servergid=""])
AC_SUBST([servergid])
AC_ARG_ENABLE([campaign_server],