From: <fir...@us...> - 2013-03-29 00:38:23
|
Revision: 57866 http://sourceforge.net/p/firebird/code/57866 Author: firebirds Date: 2013-03-29 00:38:19 +0000 (Fri, 29 Mar 2013) Log Message: ----------- nightly update Modified Paths: -------------- firebird/trunk/ChangeLog firebird/trunk/src/jrd/build_no.h firebird/trunk/src/misc/writeBuildNum.sh Modified: firebird/trunk/ChangeLog =================================================================== --- firebird/trunk/ChangeLog 2013-03-28 16:52:03 UTC (rev 57865) +++ firebird/trunk/ChangeLog 2013-03-29 00:38:19 UTC (rev 57866) @@ -1,3 +1,66 @@ + 2013-03-28 16:52 hvlad + M src/jrd/cch.cpp + M src/jrd/cch.h +Refactor a bit + + 2013-03-28 15:35 alexpeshkoff + M builds/install/misc/aliases.conf.in + M src/common/config/config_file.cpp + M src/common/config/config_file.h +Added macros for main firebird directories to config files + + 2013-03-28 13:55 alexpeshkoff + M builds/install/misc/firebird.conf.in +Make default firebird.conf better readable. No need in conversion tables any more. + + 2013-03-28 13:43 alexpeshkoff + M src/common/config/config.cpp + M src/common/config/config.h + M src/common/config/config_file.cpp + M src/common/config/config_file.h + M src/include/firebird/Plugin.h + M src/yvalve/PluginManager.cpp +Fixed problems when config file is missing +Make config manager and it's external interfaces work with 64-bit integers +Added support for boolean values (like 'true' & 'yes') to external config interfaces +Added support for kmg multipliers to config manager + + 2013-03-28 13:15 hvlad + M src/common/os/win32/path_utils.cpp +Well, there is a case where relative path could contain drive letter, for ex. C:xxx\yyy\zzz. +Correct first version of code. + + 2013-03-28 12:46 mapopa + M src/isql/isql.epp +MUISQL (QA Test bed Multiuser environment) target is not builded anymore from Firebird 1.x ages + + 2013-03-28 12:09 hvlad + M builds/win32/msvc10/engine.vcxproj + M builds/win32/msvc10/engine.vcxproj.filters + M builds/win32/msvc8/engine.vcproj + M builds/win32/msvc9/engine.vcproj +Update Windows build + + 2013-03-28 12:04 hvlad + M src/common/os/win32/path_utils.cpp +If path contains drive letter - it is definitely not relative path + + 2013-03-28 10:15 mapopa + M doc/license/IDPL.txt + M doc/license/README.license.usage.txt +Fix licenses urls , sourcecode tree is moved to SVN from CVS + + 2013-03-28 09:32 mapopa + M builds/make.new/config/install-sh + M extern/editline/configure +update config files after fixing recent version of autoconf/automake/libtool complain about the firebird +scripts aclocal: warning: autoconf input should be named 'configure.ac', not 'configure.in' + + 2013-03-28 07:24 alexpeshkoff + M src/common/os/posix/path_utils.cpp + M src/common/os/win32/path_utils.cpp +Fixed case with empty path - thanks to Dmitry Kovalenko + 2013-03-27 16:09 asfernandes M src/dsql/DdlNodes.epp Fixed CORE-4071 - external function declaration with "returns parameter" crashes the server. Modified: firebird/trunk/src/jrd/build_no.h =================================================================== --- firebird/trunk/src/jrd/build_no.h 2013-03-28 16:52:03 UTC (rev 57865) +++ firebird/trunk/src/jrd/build_no.h 2013-03-29 00:38:19 UTC (rev 57866) @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:30302 + FORMAL BUILD NUMBER:30313 */ -#define PRODUCT_VER_STRING "3.0.0.30302" -#define FILE_VER_STRING "WI-T3.0.0.30302" -#define LICENSE_VER_STRING "WI-T3.0.0.30302" -#define FILE_VER_NUMBER 3, 0, 0, 30302 +#define PRODUCT_VER_STRING "3.0.0.30313" +#define FILE_VER_STRING "WI-T3.0.0.30313" +#define LICENSE_VER_STRING "WI-T3.0.0.30313" +#define FILE_VER_NUMBER 3, 0, 0, 30313 #define FB_MAJOR_VER "3" #define FB_MINOR_VER "0" #define FB_REV_NO "0" -#define FB_BUILD_NO "30302" +#define FB_BUILD_NO "30313" #define FB_BUILD_TYPE "T" #define FB_BUILD_SUFFIX "Firebird 3.0 Unstable" Modified: firebird/trunk/src/misc/writeBuildNum.sh =================================================================== --- firebird/trunk/src/misc/writeBuildNum.sh 2013-03-28 16:52:03 UTC (rev 57865) +++ firebird/trunk/src/misc/writeBuildNum.sh 2013-03-29 00:38:19 UTC (rev 57866) @@ -9,7 +9,7 @@ MajorVer=3 MinorVer=0 RevNo=0 -BuildNum=30302 +BuildNum=30313 NowAt=`pwd` cd `dirname $0` This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |