fix up all version numbers properly this time hopefully :)

This commit is contained in:
DNB 2005-12-12 13:46:07 +00:00
parent bdc4227c62
commit f8736c3be0
6 changed files with 9 additions and 7 deletions

View file

@ -1,4 +1,4 @@
* GameServ * Version 3.0.a3-dev
* GamesServ * Version 3.0.a3
==============================================================================
Important information you should know: (READ THIS!)
==============================================================================

4
configure vendored
View file

@ -2310,8 +2310,8 @@ if test "$ns_version_ok" = "yes"; then
echo "$as_me:$LINENO: result: Compatible version" >&5
echo "${ECHO_T}Compatible version" >&6;
else
{ { echo "$as_me:$LINENO: error: This module requires NeoStats 3.0.a3-dev or higher" >&5
echo "$as_me: error: This module requires NeoStats 3.0.a3-dev or higher" >&2;}
{ { echo "$as_me:$LINENO: error: This module requires NeoStats 3.0.a3 or higher" >&5
echo "$as_me: error: This module requires NeoStats 3.0.a3 or higher" >&2;}
{ (exit 1); exit 1; }; }
fi

View file

@ -7,7 +7,7 @@ MODULE_MAJOR=3
MODULE_MINOR=0
MODULE_REV=a3
VERSION=$MODULE_MAJOR.$MODULE_MINOR.$MODULE_REV
AC_DEFINE_UNQUOTED(MODULE_VERSION, "$VERSION")
AC_DEFINE_UNQUOTED(MODULE_VERSION, "$VERSION", "Complete Module Version")
AC_DEFINE_UNQUOTED(MODULE_MAJOR, "$MODULE_MAJOR")
AC_DEFINE_UNQUOTED(MODULE_MINOR, "$MODULE_MINOR")
AC_DEFINE_UNQUOTED(MODULE_REV, "$MODULE_REV")
@ -55,7 +55,7 @@ int main(void) {
if test "$ns_version_ok" = "yes"; then
AC_MSG_RESULT(Compatible version);
else
AC_MSG_ERROR(This module requires NeoStats 3.0.a3-dev or higher)
AC_MSG_ERROR(This module requires NeoStats 3.0.a3 or higher)
fi
dnl check if we are running with Debug....

View file

@ -67,7 +67,7 @@ ModuleInfo module_info = {
gs_copyright,
gs_about,
NEOSTATS_VERSION,
"3.0",
MODULE_VERSION,
__DATE__,
__TIME__,
0,

View file

@ -20,6 +20,8 @@
** $Id$
*/
#include MODULECONFIG
extern Bot *gs_bot;
/*

View file

@ -1,7 +1,7 @@
/* define this to enable debug code for this module */
#undef DEBUG
/* Version number of package */
/* "Complete Module Version" */
#undef MODULE_VERSION
/* Major Version */