From: <fir...@us...> - 2014-11-27 06:51:35
|
Revision: 60298 http://sourceforge.net/p/firebird/code/60298 Author: firebirds Date: 2014-11-27 06:51:32 +0000 (Thu, 27 Nov 2014) 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 2014-11-26 17:43:45 UTC (rev 60297) +++ firebird/trunk/ChangeLog 2014-11-27 06:51:32 UTC (rev 60298) @@ -1,3 +1,49 @@ + 2014-11-26 17:43 alexpeshkoff + M configure.ac + M src/common/os/posix/mod_loader.cpp + M src/jrd/flu.cpp + M src/remote/remote.cpp + M src/remote/remote.h +Load zlib dynamically to make it possible for the client to run without it +Added configure switch to turn off build with compression +Cleanup zlib streams to avoid memory leak +Use SHRLIB_EXT instead explicit "so" + + 2014-11-26 10:20 alexpeshkoff + M src/remote/client/interface.cpp + M src/remote/server/server.cpp +Remove unneeded any more assert, causing problems for a build w/o compression + + 2014-11-26 10:01 alexpeshkoff + M builds/posix/make.shared.variables +Fixed posix build + + 2014-11-26 09:45 hvlad + M builds/win32/msvc10/common.vcxproj + M builds/win32/msvc10/common.vcxproj.filters + M builds/win32/msvc10/yvalve.vcxproj + M builds/win32/msvc10/yvalve.vcxproj.filters + M builds/win32/msvc12/common.vcxproj + M builds/win32/msvc12/common.vcxproj.filters + M builds/win32/msvc12/yvalve.vcxproj + M builds/win32/msvc12/yvalve.vcxproj.filters + M src/common/config/config.cpp + D src/common/config/os + M src/include/firebird/FirebirdInterface.idl + M src/include/firebird/IdlFbInterfaces.h + M src/jrd/trace/TraceConfigStorage.cpp + M src/jrd/trace/TraceObjects.cpp + M src/yvalve/PluginManager.cpp + A src/yvalve/config + A src/yvalve/config/os (from /firebird/trunk/src/common/config/os:60291) + M src/yvalve/config/os/darwin/config_root.cpp + M src/yvalve/config/os/posix/config_root.cpp + M src/yvalve/config/os/win32/config_root.cpp +Move ConfigRoot from common to the yvalve. Add its methods to the public interface ConfigManager. +Now all plug-ins have the same root\install folders. +It should fix CORE-4581 and related issues. +MSVC10 and MSVC12 builds are updated, Posix and Darwin builds will follow. + 2014-11-25 15:02 asfernandes M src/dsql/ddl.cpp Fixed CORE-4623 - SP "Domain" and "Type Of" based variables referring BLOB with sub_type < 0 no longer work. Modified: firebird/trunk/src/jrd/build_no.h =================================================================== --- firebird/trunk/src/jrd/build_no.h 2014-11-26 17:43:45 UTC (rev 60297) +++ firebird/trunk/src/jrd/build_no.h 2014-11-27 06:51:32 UTC (rev 60298) @@ -3,16 +3,16 @@ *** DO NOT EDIT *** TO CHANGE ANY INFORMATION IN HERE PLEASE EDIT src/misc/writeBuildNum.sh - FORMAL BUILD NUMBER:31447 + FORMAL BUILD NUMBER:31451 */ -#define PRODUCT_VER_STRING "3.0.0.31447" -#define FILE_VER_STRING "WI-T3.0.0.31447" -#define LICENSE_VER_STRING "WI-T3.0.0.31447" -#define FILE_VER_NUMBER 3, 0, 0, 31447 +#define PRODUCT_VER_STRING "3.0.0.31451" +#define FILE_VER_STRING "WI-T3.0.0.31451" +#define LICENSE_VER_STRING "WI-T3.0.0.31451" +#define FILE_VER_NUMBER 3, 0, 0, 31451 #define FB_MAJOR_VER "3" #define FB_MINOR_VER "0" #define FB_REV_NO "0" -#define FB_BUILD_NO "31447" +#define FB_BUILD_NO "31451" #define FB_BUILD_TYPE "T" #define FB_BUILD_SUFFIX "Firebird 3.0 Beta 1" Modified: firebird/trunk/src/misc/writeBuildNum.sh =================================================================== --- firebird/trunk/src/misc/writeBuildNum.sh 2014-11-26 17:43:45 UTC (rev 60297) +++ firebird/trunk/src/misc/writeBuildNum.sh 2014-11-27 06:51:32 UTC (rev 60298) @@ -9,7 +9,7 @@ MajorVer=3 MinorVer=0 RevNo=0 -BuildNum=31447 +BuildNum=31451 NowAt=`pwd` cd `dirname $0` This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |