correct some values

rewrite the "evaluating build systems"-part to refelect current
situation better insert correct places for reporting bugs
This commit is contained in:
Nils Kneuper 2008-11-23 11:38:41 +00:00
parent 832e523669
commit 8f7a6c6936
3 changed files with 17 additions and 11 deletions

4
README
View file

@ -10,8 +10,8 @@ To be notified of new releases, go to
http://freshmeat.net/projects/wesnoth
and 'subscribe to new releases'.
Wesnoth User and Developer Forums (with over 100,000 posts from more
than 2,800 registered members) can be found at
Wesnoth User and Developer Forums (with over 250,000 posts from more
than 10,000 registered members) can be found at
http://forum.wesnoth.org/
For extensive documentation about all aspects of the game, see the

View file

@ -3,7 +3,7 @@
#define PACKAGE "wesnoth"
/* Define to the address where bug reports for this package should be sent. */
#define PACKAGE_BUGREPORT "davidnwhite@verizon.net"
#define PACKAGE_BUGREPORT "http://bugs.wesnoth.org"
/* Define to the full name of this package. */
#define PACKAGE_NAME "Battle for Wesnoth"

View file

@ -7,19 +7,21 @@
AC_PREREQ([2.60])
define([WESNOTH_VERSION],[1.5.6+svn])
define([WESNOTH_BUGS],[http://bugs.wesnoth.org])
AC_INIT([Battle for Wesnoth], WESNOTH_VERSION, [isaac@warp.es], [wesnoth])
AC_INIT([Battle for Wesnoth], WESNOTH_VERSION, WESNOTH_BUGS, [wesnoth])
AC_REVISION([$Revision$])
echo "****************************************"
echo "*** ***"
echo "*** At the moment cmake and scons ***"
echo "*** are evaluated to replace the ***"
echo "*** autotools build system. Once a ***"
echo "*** decision has been made ***"
echo "*** autotools will most likely ***"
echo "*** become deprecated. ***"
echo "*** At the moment we are also ***"
echo "*** working on cmake and scons ***"
echo "*** based build systems which ***"
echo "*** might replace the autotools ***"
echo "*** build system. Due to this ***"
echo "*** autotools might be become ***"
echo "*** deprecated. ***"
echo "*** Please test scons and cmake ***"
echo "*** and report any problems! ***"
echo "*** ***"
@ -29,7 +31,11 @@ echo "*** directory. ***"
echo "*** ***"
echo "*** To build with cmake, type ***"
echo "*** 'cmake .' followed by 'make' ***"
echo "*** in the distribution directory. ***"
echo "*** in the distribution directory ***"
echo "*** or create a directory to build ***"
echo "*** in and type ***"
echo "*** 'cmake PATH/TO/WESNOTH/SOURCE' ***"
echo "*** followed by 'make'. ***"
echo "*** ***"
echo "*** See the INSTALL file for more ***"
echo "*** details. ***"