Hi, I was looking at bug
https://bugs.launchpad.net/drizzle/+bug/461380 It is about the variables test case failing, this bug (I am almost sure) is the same bug as https://bugs.launchpad.net/drizzle/+bug/438852 "variables test fails as of build 1144 on linux 32 bit machines" which was introduced after the fix of https://bugs.launchpad.net/drizzle/+bug/377826 "Failure to detect error in allocating transcation_prealloc_size" Anyways, this warning should only happen on 32 bit machines, a 64 bit machine should not truncate the value the test case is truing to use. I have noticed that hades, the macos server used to build drizzle was supposed to be building 64-bit drizzle as well, but it turned out it was building as 32 bit. (I checked myself by simple doing $ file /path/to/drizzled Could anyone do the same on Stewart's server? (I really don;t know if solaris has the file command or you need something else) Thanks -Diego P.S. I'm not sure if hades is now building 64 bit, but if it is not, it could be setup to build both, 32 and 64 bit, to force a 64 bit you can run this: (Using Leopard, not Snow Leopard) $ ./config/autorun.sh && \ MACOSX_DEPLOYMENT_TARGET=10.5 \ CPPFLAGS="-arch x86_64" \ CFLAGS="-arch x86_64" \ CCFLAGS=" -arch x86_64" \ CXXFLAGS=" -arch x86_64" \ LDFLAGS=" -arch x86_64" \ ./configure \ --with-debug \ --with-lib-prefix=/opt/local Note: on my mac, all the 32 bit related libraries/etc are in /opt/local -- Diego Medina Web Developer http://www.fmpwizard.com _______________________________________________ Mailing list: https://launchpad.net/~drizzle-discuss Post to : [email protected] Unsubscribe : https://launchpad.net/~drizzle-discuss More help : https://help.launchpad.net/ListHelp

