fix up all version numbers properly this time hopefully :)
This commit is contained in:
parent
bdc4227c62
commit
f8736c3be0
6 changed files with 9 additions and 7 deletions
2
RELNOTES
2
RELNOTES
|
@ -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
4
configure
vendored
|
@ -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
|
||||
|
||||
|
|
|
@ -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....
|
||||
|
|
|
@ -67,7 +67,7 @@ ModuleInfo module_info = {
|
|||
gs_copyright,
|
||||
gs_about,
|
||||
NEOSTATS_VERSION,
|
||||
"3.0",
|
||||
MODULE_VERSION,
|
||||
__DATE__,
|
||||
__TIME__,
|
||||
0,
|
||||
|
|
|
@ -20,6 +20,8 @@
|
|||
** $Id$
|
||||
*/
|
||||
|
||||
#include MODULECONFIG
|
||||
|
||||
extern Bot *gs_bot;
|
||||
|
||||
/*
|
||||
|
|
|
@ -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 */
|
||||
|
|
Reference in a new issue