Nuke the vestigial --lite option.
This commit is contained in:
parent
befe76a519
commit
efcff1274b
3 changed files with 30 additions and 46 deletions
|
@ -6,12 +6,8 @@ bin_SCRIPTS =
|
|||
|
||||
findfilterflags=! \( -name .svn -prune -o -name ".\#*" -o -name "*~" -o -name "*bak" -o -type d \)
|
||||
|
||||
if LITE
|
||||
exclude=| egrep -v '(/sounds|/music)'
|
||||
endif
|
||||
|
||||
finddata=(cd $(top_srcdir) && find data fonts icons images sounds $(findfilterflags) -print ) $(exclude)
|
||||
finddatadirs=(cd $(top_srcdir) && find data fonts icons images sounds -type d \! \( -name .svn -prune \) -print ) $(exclude)
|
||||
finddata=(cd $(top_srcdir) && find data fonts icons images sounds $(findfilterflags) -print )
|
||||
finddatadirs=(cd $(top_srcdir) && find data fonts icons images sounds -type d \! \( -name .svn -prune \) -print )
|
||||
findnoinst=(cd $(top_srcdir) && find utils $(findfilterflags) -print )
|
||||
|
||||
finddocdist=(cd $(top_srcdir) && find doc/manual -name "*.html" -o -name "*.css" -o -name "*.jpg" -o -name "*.txt")
|
||||
|
|
|
@ -31,7 +31,6 @@ opts.Add('server_uid', 'user id of the user who runs wesnothd', "")
|
|||
opts.Add('server_gid', 'group id of the user who runs wesnothd', "")
|
||||
|
||||
# FIXME: These are not yet implemented
|
||||
opts.Add(BoolOption('lite', 'Set to build lite version of wesnoth (no music or large images)', False))
|
||||
opts.Add(BoolOption('dummy_locales','Set to enable Wesnoth private locales', False))
|
||||
opts.Add(BoolOption('desktop_entry','Clear to disable desktop-entry', True))
|
||||
opts.Add(PathOption('localedir', 'sets the locale data directory to a non-default location', "translations", PathOption.PathAccept))
|
||||
|
|
67
configure.ac
67
configure.ac
|
@ -102,11 +102,6 @@ AC_ARG_ENABLE([python_install],
|
|||
[python_install=$enableval],
|
||||
[python_install=no])
|
||||
|
||||
AC_ARG_ENABLE([lite],
|
||||
AS_HELP_STRING([--enable-lite], [enable lite version of wesnoth (without music or large images)]),
|
||||
[lite=$enableval],
|
||||
[lite=no])
|
||||
|
||||
AC_ARG_ENABLE([tinygui],
|
||||
AS_HELP_STRING([--enable-tinygui], [enable GUI reductions for resolutions down to 320x240 (PDAs), resize images before installing]),
|
||||
[tinygui=$enableval],
|
||||
|
@ -886,43 +881,41 @@ LIBS=$OLD_LIBS
|
|||
# Check for OGG support in SDL_mixer #
|
||||
#######################################################################
|
||||
|
||||
if test "x$lite" = "xno"; then
|
||||
if test -e "data/core/music/main_menu.ogg" ; then
|
||||
AC_LANG([C])
|
||||
AC_MSG_CHECKING([for OGG support in SDL_mixer])
|
||||
if test -e "data/core/music/main_menu.ogg" ; then
|
||||
AC_LANG([C])
|
||||
AC_MSG_CHECKING([for OGG support in SDL_mixer])
|
||||
|
||||
OLD_CPPFLAGS=$CPPFLAGS
|
||||
OLD_CFLAGS=$CFLAGS
|
||||
OLD_LIBS=$LIBS
|
||||
OLD_CPPFLAGS=$CPPFLAGS
|
||||
OLD_CFLAGS=$CFLAGS
|
||||
OLD_LIBS=$LIBS
|
||||
|
||||
|
||||
CPPFLAGS="$CPPFLAGS $SDL_CFLAGS"
|
||||
CFLAGS="$CFLAGS $SDL_CFLAGS"
|
||||
LIBS="$LIBS $SDL_LIBS $SDL_MIXER_LIBS"
|
||||
CPPFLAGS="$CPPFLAGS $SDL_CFLAGS"
|
||||
CFLAGS="$CFLAGS $SDL_CFLAGS"
|
||||
LIBS="$LIBS $SDL_LIBS $SDL_MIXER_LIBS"
|
||||
|
||||
ac_link="$LDPREFIX $ac_link"
|
||||
AC_RUN_IFELSE([AC_LANG_SOURCE([
|
||||
#include <SDL_mixer.h>
|
||||
#include <stdlib.h>
|
||||
ac_link="$LDPREFIX $ac_link"
|
||||
AC_RUN_IFELSE([AC_LANG_SOURCE([
|
||||
#include <SDL_mixer.h>
|
||||
#include <stdlib.h>
|
||||
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
Mix_Music* music = Mix_LoadMUS("data/core/music/main_menu.ogg");
|
||||
if (music == NULL)
|
||||
exit(1);
|
||||
exit(0);
|
||||
}
|
||||
])],
|
||||
[AC_MSG_RESULT(yes)],
|
||||
[AC_MSG_RESULT(no)]
|
||||
[AC_MSG_ERROR([*** SDL_mixer has no OGG support! You need SDL_mixer with OGG support])],
|
||||
[AC_MSG_RESULT([not tested in cross-compiling])])
|
||||
int main(int argc, char **argv)
|
||||
{
|
||||
Mix_Music* music = Mix_LoadMUS("data/core/music/main_menu.ogg");
|
||||
if (music == NULL)
|
||||
exit(1);
|
||||
exit(0);
|
||||
}
|
||||
])],
|
||||
[AC_MSG_RESULT(yes)],
|
||||
[AC_MSG_RESULT(no)]
|
||||
[AC_MSG_ERROR([*** SDL_mixer has no OGG support! You need SDL_mixer with OGG support])],
|
||||
[AC_MSG_RESULT([not tested in cross-compiling])])
|
||||
|
||||
|
||||
CPPFLAGS=$OLD_CPPFLAGS
|
||||
CFLAGS=$OLD_CFLAGS
|
||||
LIBS=$OLD_LIBS
|
||||
fi
|
||||
CPPFLAGS=$OLD_CPPFLAGS
|
||||
CFLAGS=$OLD_CFLAGS
|
||||
LIBS=$OLD_LIBS
|
||||
fi
|
||||
|
||||
#######################################################################
|
||||
|
@ -1043,10 +1036,6 @@ done])
|
|||
# Data file substitution. #
|
||||
#######################################################################
|
||||
|
||||
AM_CONDITIONAL([LITE], [test "x$lite" = "xyes"])
|
||||
if test "x$lite" = "xyes"; then
|
||||
PACKAGE=$PACKAGE-lite
|
||||
fi
|
||||
AC_SUBST([DATA_FILES])
|
||||
AC_SUBST([FONT_FILES])
|
||||
AC_SUBST([IMAGE_FILES])
|
||||
|
|
Loading…
Add table
Reference in a new issue