[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Wesnoth-cvs-commits] wesnoth configure.ac changelog
From: |
Yann Dirson |
Subject: |
[Wesnoth-cvs-commits] wesnoth configure.ac changelog |
Date: |
Fri, 05 Nov 2004 20:48:16 -0500 |
CVSROOT: /cvsroot/wesnoth
Module name: wesnoth
Branch:
Changes by: Yann Dirson <address@hidden> 04/11/05 21:57:12
Modified files:
. : configure.ac changelog
Log message:
add --enable-tinygui configure flag to help the build process
CVSWeb URLs:
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/configure.ac.diff?tr1=1.103&tr2=1.104&r1=text&r2=text
http://savannah.gnu.org/cgi-bin/viewcvs/wesnoth/wesnoth/changelog.diff?tr1=1.373&tr2=1.374&r1=text&r2=text
Patches:
Index: wesnoth/changelog
diff -u wesnoth/changelog:1.373 wesnoth/changelog:1.374
--- wesnoth/changelog:1.373 Fri Nov 5 08:28:11 2004
+++ wesnoth/changelog Fri Nov 5 21:57:12 2004
@@ -20,6 +20,7 @@
* italian
* portuguese
* swedish
+ * new --enable-tinygui configure flag for adventurous PDA users
* fixed translations being searched for in installdir when running in builddir
* fixed code for handling objects
* fixed chest placement in 'The Rise of Wesnoth: The Vanguard'
Index: wesnoth/configure.ac
diff -u wesnoth/configure.ac:1.103 wesnoth/configure.ac:1.104
--- wesnoth/configure.ac:1.103 Sun Oct 31 19:14:06 2004
+++ wesnoth/configure.ac Fri Nov 5 21:57:12 2004
@@ -10,7 +10,7 @@
dnl AC_DEFINE([WESNOTH_DEFAULT_SERVER], ["devsrv.wesnoth.org"], [The default
server for this version])
AC_DEFINE([WESNOTH_DEFAULT_SERVER], ["devsrv.wesnoth.org:14999"], [The default
server for this version])
-AC_REVISION([$Revision: 1.103 $])
+AC_REVISION([$Revision: 1.104 $])
AC_CONFIG_AUX_DIR([config])
AM_INIT_AUTOMAKE([foreign 1.5])
@@ -36,10 +36,21 @@
[static=no])
AC_ARG_ENABLE([lite],
- [ --enable-lite enable lite version of wesnoth
(without music)],
+ [ --enable-lite enable lite version of wesnoth
(without music or large images)],
[lite=$enableval],
[lite=no])
+AC_ARG_ENABLE([tinygui],
+ [ --enable-tinygui enable GUI reductions for resolutions
down to 320x240 (PDAs)],
+ [tinygui=$enableval],
+ [tinygui=no])
+
+if test "x$tinygui" = "xyes"
+then
+ CPPFLAGS="$CPPFLAGS -DUSE_TINY_GUI"
+fi
+AM_CONDITIONAL([TINYGUI], [test "x$tinygui" = "xyes"])
+
DATADIR=$PACKAGE
AC_ARG_ENABLE([datadir-name],,[AC_MSG_ERROR([Please use --with-datadir-name
instead of obsolete --enable-datadir-name])])
AC_ARG_WITH([datadir-name],
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Wesnoth-cvs-commits] wesnoth configure.ac changelog,
Yann Dirson <=