1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-12 16:23:57 +00:00

* configure.in: Make gameuser configurable (Bug#7717).

* configure: Regenerate
This commit is contained in:
Ulrich Mueller 2010-12-29 19:11:25 +08:00 committed by Chong Yidong
parent 5ae0867f43
commit 4fc5868a33
3 changed files with 337 additions and 354 deletions

View File

@ -1,3 +1,7 @@
2010-12-29 Ulrich Mueller <ulm@gentoo.org>
* configure.in: Make gameuser configurable (Bug#7717).
2010-12-15 Glenn Morris <rgm@gnu.org>
* Makefile.in (install-arch-dep, uninstall): Remove code relating to the

679
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -45,8 +45,6 @@ archlibdir='${libexecdir}/emacs/${version}/${configuration}'
docdir='${datadir}/emacs/${version}/etc'
gamedir='${localstatedir}/games/emacs'
gameuser=games
dnl OPTION_DEFAULT_OFF(NAME, HELP-STRING)
dnl Create a new --with option that defaults to being disabled.
dnl NAME is the base name of the option. The shell variable with_NAME
@ -203,6 +201,12 @@ AC_ARG_WITH([crt-dir],dnl
The default is /usr/lib, or /usr/lib64 on some platforms.])])
CRT_DIR="${with_crt_dir}"
AC_ARG_WITH(gameuser,dnl
[AS_HELP_STRING([--with-gameuser=USER],[user for shared game score files])])
test "X${with_gameuser}" != X && test "${with_gameuser}" != yes \
&& gameuser="${with_gameuser}"
test "X$gameuser" = X && gameuser=games
AC_ARG_WITH([gnustep-conf],dnl
[AS_HELP_STRING([--with-gnustep-conf=PATH],[path to GNUstep.conf; default $GNUSTEP_CONFIG_FILE, or /etc/GNUstep/GNUstep.conf])])
test "X${with_gnustep_conf}" != X && test "${with_gnustep_conf}" != yes && \