mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 22:03:03 +01:00
nightly update
This commit is contained in:
parent
bf3d1607f3
commit
d3b027b883
59
ChangeLog
59
ChangeLog
@ -1,3 +1,62 @@
|
|||||||
|
2011-05-10 13:29 mapopa
|
||||||
|
M src/jrd/common.h
|
||||||
|
M src/jrd/pag.cpp
|
||||||
|
Description:fix big-endian mips detection It seems big-endian MIPS defines "MIPSEB"
|
||||||
|
Author: Damyan Ivanov <dmn@debian.org>
|
||||||
|
Debian bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=474773
|
||||||
|
|
||||||
|
2011-05-10 13:15 mapopa
|
||||||
|
M src/common/classes/fb_atomic.h
|
||||||
|
Description: ensure atomic_ops.h defined AO_REQUIRE_CAS in order to ensure
|
||||||
|
that AO_compare_and_swap is available even if emulated.
|
||||||
|
This would give poor performance on platforms where no native implementation
|
||||||
|
is available, but at least it gives some chance of running Firebird
|
||||||
|
Author: Damyan Ivanov <dmn@debian.org>
|
||||||
|
Debian-Bug: 565861 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=565861
|
||||||
|
|
||||||
|
2011-05-10 11:53 mapopa
|
||||||
|
M autogen.sh
|
||||||
|
From: Damyan Ivanov <dmn@debian.org>
|
||||||
|
Description: add workarounds for libtool before 2.2.6a
|
||||||
|
This makes it possible to build Firebird 2.5 on Debian Lenny and other
|
||||||
|
distributions that dont have libtool 2.2.6a available
|
||||||
|
|
||||||
|
2011-05-10 10:00 mapopa
|
||||||
|
M builds/posix/prefix.linux_powerpc
|
||||||
|
remove -mcpu=powerpc from cflags on powerpc
|
||||||
|
-mcpu=powerpc assumes certain powerpc and will create wrong code if the
|
||||||
|
default cpu is not compatible with with -mcpu=powerpc. This is the case
|
||||||
|
on softfloat toolchains for instance.
|
||||||
|
This patch removes the -mcpu= state from cflags and the default cpu will
|
||||||
|
be used.
|
||||||
|
http://lists.alioth.debian.org/pipermail/pkg-firebird-general/2010q2/001932.html
|
||||||
|
|
||||||
|
2011-05-10 09:49 mapopa
|
||||||
|
M builds/posix/prefix.linux_sparc32
|
||||||
|
Description: Drop -m32 flag
|
||||||
|
This prefix file is used on all sparc variants and -m32 breaks the build on sparc64
|
||||||
|
Author: Damyan Ivanov <dmn@debian.org>
|
||||||
|
Forwarded: from debian/patches
|
||||||
|
|
||||||
|
2011-05-10 09:29 hvlad
|
||||||
|
M src/jrd/dpm.epp
|
||||||
|
Backported fix for bug CORE-3468 : Attempt to read after the end of file when nbackup state is stalled
|
||||||
|
|
||||||
|
2011-05-10 09:18 hvlad
|
||||||
|
M src/jrd/cch.cpp
|
||||||
|
M src/jrd/cch.h
|
||||||
|
M src/jrd/cch_proto.h
|
||||||
|
M src/jrd/nbak.cpp
|
||||||
|
Backported fix for bug CORE-3466 : Some changes could be lost during the merge of delta file into main database file
|
||||||
|
|
||||||
|
2011-05-10 09:02 hvlad
|
||||||
|
M src/jrd/cch.cpp
|
||||||
|
Backported fix for bug CORE-3465 : Nbackup state lock could be not released after cache error. It results in "Can't lock state for write" bugcheck when backup state is going to be changed.
|
||||||
|
|
||||||
|
2011-05-10 08:57 hvlad
|
||||||
|
M src/jrd/cch.cpp
|
||||||
|
Backported fix for bug CORE-3464 : Dirty page could be written without releasing (or downgrading) page lock. It results in "lock denied" or "lock conversion denied" bugcheck
|
||||||
|
|
||||||
2011-04-28 16:59 alexpeshkoff
|
2011-04-28 16:59 alexpeshkoff
|
||||||
M src/lock/print.cpp
|
M src/lock/print.cpp
|
||||||
Fixed CORE-3454: "fb_lock_print -c" hangs server
|
Fixed CORE-3454: "fb_lock_print -c" hangs server
|
||||||
|
@ -3,16 +3,16 @@
|
|||||||
*** DO NOT EDIT ***
|
*** DO NOT EDIT ***
|
||||||
TO CHANGE ANY INFORMATION IN HERE PLEASE
|
TO CHANGE ANY INFORMATION IN HERE PLEASE
|
||||||
EDIT src/misc/writeBuildNum.sh
|
EDIT src/misc/writeBuildNum.sh
|
||||||
FORMAL BUILD NUMBER:26266
|
FORMAL BUILD NUMBER:26275
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define PRODUCT_VER_STRING "2.5.1.26266"
|
#define PRODUCT_VER_STRING "2.5.1.26275"
|
||||||
#define FILE_VER_STRING "WI-V2.5.1.26266"
|
#define FILE_VER_STRING "WI-V2.5.1.26275"
|
||||||
#define LICENSE_VER_STRING "WI-V2.5.1.26266"
|
#define LICENSE_VER_STRING "WI-V2.5.1.26275"
|
||||||
#define FILE_VER_NUMBER 2, 5, 1, 26266
|
#define FILE_VER_NUMBER 2, 5, 1, 26275
|
||||||
#define FB_MAJOR_VER "2"
|
#define FB_MAJOR_VER "2"
|
||||||
#define FB_MINOR_VER "5"
|
#define FB_MINOR_VER "5"
|
||||||
#define FB_REV_NO "1"
|
#define FB_REV_NO "1"
|
||||||
#define FB_BUILD_NO "26266"
|
#define FB_BUILD_NO "26275"
|
||||||
#define FB_BUILD_TYPE "V"
|
#define FB_BUILD_TYPE "V"
|
||||||
#define FB_BUILD_SUFFIX "Firebird 2.5"
|
#define FB_BUILD_SUFFIX "Firebird 2.5"
|
||||||
|
@ -9,7 +9,7 @@ BuildType=V
|
|||||||
MajorVer=2
|
MajorVer=2
|
||||||
MinorVer=5
|
MinorVer=5
|
||||||
RevNo=1
|
RevNo=1
|
||||||
BuildNum=26266
|
BuildNum=26275
|
||||||
|
|
||||||
if [ "$SPECIAL_BUILD_SUFFIX" = "" ]; then
|
if [ "$SPECIAL_BUILD_SUFFIX" = "" ]; then
|
||||||
# Normal builds
|
# Normal builds
|
||||||
|
Loading…
Reference in New Issue
Block a user