[Intrepid-commit] SF.net SVN: intrepid:[12] trunk/src
Status: Pre-Alpha
Brought to you by:
segtor
|
From: <se...@us...> - 2010-05-17 18:25:57
|
Revision: 12
http://intrepid.svn.sourceforge.net/intrepid/?rev=12&view=rev
Author: segtor
Date: 2010-05-17 18:25:51 +0000 (Mon, 17 May 2010)
Log Message:
-----------
Fixing version info
Modified Paths:
--------------
trunk/src/configure/Makefile.template
trunk/src/include/config.h
trunk/src/mud/version.c
Modified: trunk/src/configure/Makefile.template
===================================================================
--- trunk/src/configure/Makefile.template 2010-05-17 17:56:03 UTC (rev 11)
+++ trunk/src/configure/Makefile.template 2010-05-17 18:25:51 UTC (rev 12)
@@ -226,6 +226,7 @@
version:
@echo "#define COMPILE_TIME \"`date`\"" > include/version.h
@echo "#define UNAME \"`uname`\"" >> include/version.h
+ @echo "#define ARCH \"`uname -m`\"" >> include/version.h
broadcast:
@echo ""
Modified: trunk/src/include/config.h
===================================================================
--- trunk/src/include/config.h 2010-05-17 17:56:03 UTC (rev 11)
+++ trunk/src/include/config.h 2010-05-17 18:25:51 UTC (rev 12)
@@ -23,7 +23,7 @@
#include "types.h"
-#define INTREPID_VERSION "0.072"
+#define INTREPID_VERSION "0.073"
#define MUD_SOCKET_PATH "files/pids/mud_alive_socket"
#define ANGEL_PID "files/pids/ANGEL_PID"
Modified: trunk/src/mud/version.c
===================================================================
--- trunk/src/mud/version.c 2010-05-17 17:56:03 UTC (rev 11)
+++ trunk/src/mud/version.c 2010-05-17 18:25:51 UTC (rev 12)
@@ -185,7 +185,7 @@
"IntrepidMUD Version Information");
stack = strprintf(stack, add_string,
"This MUD is based on IntrepidMUD by Segtor (Mikael Segercrantz), "
- "Dan (Dan Griffiths), Beaver (Dave Etheridge).\n ");
+ "Dan (Dan Griffiths), Beaver (Dave Etheridge).\n");
stack = add_line_text(u, stack, add_string, "License");
stack = strprintf(stack, add_string,
"IntrepidMUD is released under the GNU General Public License, "
@@ -197,7 +197,7 @@
"%s running on %s.\n",
get_config_message(config_message, "mud_name"),
#ifdef LINUX
- "Linux"
+ "Linux-" ARCH
#else
"Unknown O/S"
#endif
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|