[Spread-cvs] commit: r378 - in trunk: . daemon

jonathan at spread.org jonathan at spread.org
Sun Nov 19 23:12:55 EST 2006


Author: jonathan
Date: 2006-11-19 23:12:55 -0500 (Sun, 19 Nov 2006)
New Revision: 378

Modified:
   trunk/CVS_Readme.txt
   trunk/Readme.txt
   trunk/daemon/monitor.c
   trunk/daemon/spread.c
   trunk/daemon/spread_params.h
Log:
Change spread and monitor to grab build date from spread_params.h header.

Update build date to Nov 19, 2006

Update Readme.txt with current changes


Modified: trunk/CVS_Readme.txt
===================================================================
--- trunk/CVS_Readme.txt	2006-11-19 22:06:12 UTC (rev 377)
+++ trunk/CVS_Readme.txt	2006-11-20 04:12:55 UTC (rev 378)
@@ -78,7 +78,7 @@
 2) If changes to spread library, update the library version (LIBVERSION) as needed in libspread/Makefile.in
 
 3) Update build dates.
-   *) Update build date in spread.c and monitor.c initial Alarm prints.
+   *) Update build date in spread_params.h.
    *) Update Readme.txt header with new date and version.
  
 4) Tags are: 

Modified: trunk/Readme.txt
===================================================================
--- trunk/Readme.txt	2006-11-19 22:06:12 UTC (rev 377)
+++ trunk/Readme.txt	2006-11-20 04:12:55 UTC (rev 378)
@@ -47,9 +47,31 @@
 | WWW    : http://www.spread.org  and  http://www.spreadconcepts.com        |
 | Contact: info at spreadconcepts.com                                          |
 |                                                                           |
-| Version 4.0.0  built 13/Mar/2006                                          |
+| Version 4.0.0  built 19/November/2006                                     |
 \===========================================================================/
 
+November 19, 2006 Ver 4.0.0rc3
+------------------------------
+
+1) Fix a number of build and code bugs. See Changelog for details.
+
+2) Include updated stdutil library release with bugfixes and improved build.
+
+3) New version of Win32 VC++ project files.
+
+4) Includes workaround to break out of EVS if stuck with rotating token.
+
+5) Updates to some documentation.
+
+March 13, 2006 Ver 4.0.0rc2
+---------------------------
+
+Improve integration of stdutil configure and build with Spread's configure
+and build environment.
+
+Fix typo bug in flush library.
+
+
 March, 1, 2006 Ver 4.0.0rc1
 ---------------------------
 Major Features:

Modified: trunk/daemon/monitor.c
===================================================================
--- trunk/daemon/monitor.c	2006-11-19 22:06:12 UTC (rev 377)
+++ trunk/daemon/monitor.c	2006-11-20 04:12:55 UTC (rev 378)
@@ -96,6 +96,8 @@
 static	packet_header	Report_pack;
 static  channel         Report_socket;
 
+static  const char            Spread_build_date[] = SPREAD_BUILD_DATE;
+
 static	void	Print_menu();
 
 static	void	User_command();
@@ -198,8 +200,8 @@
 	Alarmp( SPLOG_PRINT, SYSTEM, "| WWW:     www.spread.org     www.spreadconcepts.com                        |\n");
 	Alarmp( SPLOG_PRINT, SYSTEM, "| Contact: info at spreadconcepts.com                                          |\n");
 	Alarmp( SPLOG_PRINT, SYSTEM, "|                                                                           |\n");
-	Alarmp( SPLOG_PRINT, SYSTEM, "| Version %d.%02d.%02d Built 13/March/2006                                      |\n", 
-		(int)SP_MAJOR_VERSION, (int)SP_MINOR_VERSION, (int)SP_PATCH_VERSION);
+	Alarmp( SPLOG_PRINT, SYSTEM, "| Version %d.%02d.%02d Built %-17s                                   |\n", 
+		(int)SP_MAJOR_VERSION, (int)SP_MINOR_VERSION, (int)SP_PATCH_VERSION, Spread_build_date );
 	Alarmp( SPLOG_PRINT, SYSTEM, "\\===========================================================================/\n");
 
 #ifdef ARCH_PC_WIN95

Modified: trunk/daemon/spread.c
===================================================================
--- trunk/daemon/spread.c	2006-11-19 22:06:12 UTC (rev 377)
+++ trunk/daemon/spread.c	2006-11-20 04:12:55 UTC (rev 378)
@@ -64,6 +64,8 @@
 static	char		Config_file[80];
 static	int		Log;
 
+static  const char            Spread_build_date[] = SPREAD_BUILD_DATE;
+
 static	void	Invalid_privilege_decrease(char *user, char *group);
 static	void	Usage(int argc, char *argv[]);
 
@@ -131,8 +133,8 @@
 	Alarmp( SPLOG_PRINT, SYSTEM, "| WWW:     www.spread.org     www.spreadconcepts.com                        |\n");
 	Alarmp( SPLOG_PRINT, SYSTEM, "| Contact: info at spreadconcepts.com                                          |\n");
 	Alarmp( SPLOG_PRINT, SYSTEM, "|                                                                           |\n");
-	Alarmp( SPLOG_PRINT, SYSTEM, "| Version %d.%02d.%02d Built 13/March/2006                                      |\n", 
-		(int)SP_MAJOR_VERSION, (int)SP_MINOR_VERSION, (int)SP_PATCH_VERSION );
+	Alarmp( SPLOG_PRINT, SYSTEM, "| Version %d.%02d.%02d Built %-17s                                   |\n", 
+		(int)SP_MAJOR_VERSION, (int)SP_MINOR_VERSION, (int)SP_PATCH_VERSION, Spread_build_date );
 	Alarmp( SPLOG_PRINT, SYSTEM, "\\===========================================================================/\n");
 
 	Usage( argc, argv );

Modified: trunk/daemon/spread_params.h
===================================================================
--- trunk/daemon/spread_params.h	2006-11-19 22:06:12 UTC (rev 377)
+++ trunk/daemon/spread_params.h	2006-11-20 04:12:55 UTC (rev 378)
@@ -40,6 +40,8 @@
 #define         SP_PATCH_VERSION        0
 #define         SPREAD_PROTOCOL         3
 
+#define         SPREAD_BUILD_DATE       "19/November/2006"
+
 #define		DEFAULT_SPREAD_PORT	4803
 
 #ifndef SP_RUNTIME_DIR




More information about the Spread-cvs mailing list