From: rossta <gra...@li...> - 2004-01-14 06:19:28
|
rossta Tue Jan 13 22:19:26 2004 EDT Modified files: /grapevine COPYING Makefile.in /grapevine/build/win32 grapevine.nsi /grapevine/cpp Allocator.h Engine.cpp IOLoop.cpp Operation.cpp RuleBase.cpp grapevine.cpp /grapevine/cpp/win32 config.h Log: MSVC compile fixes. Updated copyright date to 2004 Index: grapevine/cpp/win32/config.h diff -u grapevine/cpp/win32/config.h:1.17 grapevine/cpp/win32/config.h:1.18 --- grapevine/cpp/win32/config.h:1.17 Fri Jun 13 11:55:22 2003 +++ grapevine/cpp/win32/config.h Tue Jan 13 22:19:26 2004 @@ -1,4 +1,4 @@ -/* $Id: config.h,v 1.17 2003/06/13 18:55:22 rossta Exp $ */ +/* $Id: config.h,v 1.18 2004/01/14 06:19:26 rossta Exp $ */ /*! config.h for Win32 compilers @@ -119,6 +119,10 @@ #define CONFIG_FILE "grapevine-config.xml" #endif +#ifndef DATADIR + #define DATADIR "." +#endif + /* Version of Raisen language */ #ifndef LANGUAGE_VERSION #define LANGUAGE_VERSION "1.0" @@ -136,7 +140,7 @@ /* Define to the full name and version of this package. */ #ifndef PACKAGE_STRING - #define PACKAGE_STRING "GrapevineC++Engine 1.0.5" + #define PACKAGE_STRING "GrapevineC++Engine 1.0.6" #endif /* Define to the one symbol short name of this package. */ @@ -146,12 +150,12 @@ /* Define to the version of this package. */ #ifndef PACKAGE_VERSION - #define PACKAGE_VERSION "1.0.5" + #define PACKAGE_VERSION "1.0.6" #endif /* Version number of package */ #ifndef VERSION - #define VERSION "1.0.5" + #define VERSION "1.0.6" #endif // System dependent defines |