From: <fir...@us...> - 2015-01-24 00:13:32
|
Revision: 60539 http://sourceforge.net/p/firebird/code/60539 Author: firebirds Date: 2015-01-24 00:13:28 +0000 (Sat, 24 Jan 2015) 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 2015-01-22 15:06:54 UTC (rev 60538) +++ firebird/trunk/ChangeLog 2015-01-24 00:13:28 UTC (rev 60539) @@ -1,3 +1,76 @@ + 2015-01-22 12:50 alexpeshkoff + M src/common/isc_file.cpp +Fixed static area corruption in ISC_expand_nfs, should fix CORE-4644: Get both "335545060 : Missing security context " and "335544344 : I/O error during "open" operation" for existing database under heavy concurrent DML + + 2015-01-22 10:35 hvlad + M src/common/isc_s_proto.h + M src/jrd/Mapping.cpp + M src/jrd/Monitoring.cpp + M src/jrd/Monitoring.h + M src/jrd/event.cpp + M src/jrd/event.h + M src/jrd/trace/TraceConfigStorage.cpp + M src/jrd/trace/TraceConfigStorage.h + M src/jrd/trace/TraceLog.cpp + M src/jrd/trace/TraceLog.h + M src/lock/lock.cpp + M src/lock/lock_proto.h + M src/lock/print.cpp +Make shared memory header same size independent on OS. +Introduce shared memory header version. + + 2015-01-22 10:32 alexpeshkoff + M src/common/isc_file.cpp +Fixed CORE-4624: Firebird won't start under Docker + + 2015-01-22 10:23 alexpeshkoff + M src/include/firebird/Interface.h + M src/include/gen/msgs.h + M src/msgs/messages2.sql +Enhance diags + + 2015-01-21 11:21 egorpugin + A CMakeLists.txt + A builds/cmake + A builds/cmake/BuildFunctions.cmake + A builds/cmake/Configure.cmake + A builds/cmake/SourceGroups.cmake + A examples/CMakeLists.txt + A src/CMakeLists.txt + A src/gpre/CMakeLists.txt + A src/include/gen/autoconfig.h.in + A src/remote/CMakeLists.txt + A src/utilities/CMakeLists.txt +[build] [cmake] Initial CMake build system commit. + + 2015-01-21 11:11 egorpugin + M configure.ac + M src/common/common.h + M src/common/isc_sync.cpp + M src/jrd/license.h + M src/jrd/recsrc/HashJoin.cpp + M src/remote/inet.cpp + M src/remote/protocol.h + M src/remote/remote_def.h + M src/utilities/ntrace/PluginLogWriter.cpp +[build] [cmake] Prepare sources for CMake building. Add clang preprocessor defs, ARM architecture defs, some Android-related defs. Add 'qsort_r' function search to configure.ac. + + 2015-01-21 09:18 hvlad + M src/jrd/cch.cpp +Fixed my error at patch for CORE-4565. It was the reason of false "lock denied" errors. + + 2015-01-20 18:59 dimitr + M src/common/isc_f_proto.h + M src/common/isc_file.cpp + M src/remote/client/interface.cpp +1) Make xnet://db connection strings useful with forward slashes +2) Unified port numbers / protocol names syntax (thus allowing custom ports in inet://host/db connection strings) + + 2015-01-19 12:58 alexpeshkoff + M src/common/common.h + M src/include/firebird/Interface.h +Public header cleanup + 2015-01-18 14:53 asfernandes M examples/udr/UdrCppExample.cpp M src/include/firebird/Message.h Modified: firebird/trunk/src/jrd/build_no.h =================================================================== --- firebird/trunk/src/jrd/build_no.h 2015-01-22 15:06:54 UTC (rev 60538) +++ firebird/trunk/src/jrd/build_no.h 2015-01-24 00:13:28 UTC (rev 60539) @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:31557 + FORMAL BUILD NUMBER:31566 */ -#define PRODUCT_VER_STRING "3.0.0.31557" -#define FILE_VER_STRING "WI-T3.0.0.31557" -#define LICENSE_VER_STRING "WI-T3.0.0.31557" -#define FILE_VER_NUMBER 3, 0, 0, 31557 +#define PRODUCT_VER_STRING "3.0.0.31566" +#define FILE_VER_STRING "WI-T3.0.0.31566" +#define LICENSE_VER_STRING "WI-T3.0.0.31566" +#define FILE_VER_NUMBER 3, 0, 0, 31566 #define FB_MAJOR_VER "3" #define FB_MINOR_VER "0" #define FB_REV_NO "0" -#define FB_BUILD_NO "31557" +#define FB_BUILD_NO "31566" #define FB_BUILD_TYPE "T" #define FB_BUILD_SUFFIX "Firebird 3.0 Beta 2" Modified: firebird/trunk/src/misc/writeBuildNum.sh =================================================================== --- firebird/trunk/src/misc/writeBuildNum.sh 2015-01-22 15:06:54 UTC (rev 60538) +++ firebird/trunk/src/misc/writeBuildNum.sh 2015-01-24 00:13:28 UTC (rev 60539) @@ -9,7 +9,7 @@ MajorVer=3 MinorVer=0 RevNo=0 -BuildNum=31557 +BuildNum=31566 NowAt=`pwd` cd `dirname $0` This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |