From 8f7a6c6936a7dd06482f76a5699229abd26eea68 Mon Sep 17 00:00:00 2001 From: Nils Kneuper Date: Sun, 23 Nov 2008 11:38:41 +0000 Subject: [PATCH] correct some values rewrite the "evaluating build systems"-part to refelect current situation better insert correct places for reporting bugs --- README | 4 ++-- config.h.dummy | 2 +- configure.ac | 22 ++++++++++++++-------- 3 files changed, 17 insertions(+), 11 deletions(-) diff --git a/README b/README index d63ddd3ddc5..6953d4a8453 100644 --- a/README +++ b/README @@ -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 diff --git a/config.h.dummy b/config.h.dummy index a380414471f..504b535655b 100644 --- a/config.h.dummy +++ b/config.h.dummy @@ -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" diff --git a/configure.ac b/configure.ac index 1eafe41dc99..7ee7283d592 100644 --- a/configure.ac +++ b/configure.ac @@ -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. ***"