MonetDB: default - Merge with Oct2010 branch.

2010-12-07 Thread Stefan Manegold
Changeset: 2ead00e2bd38 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=2ead00e2bd38 Modified Files: buildtools/conf/MonetDB.m4 Branch: default Log Message: Merge with Oct2010 branch. diffs (36 lines): diff -r 3f4d7d858285 -r 2ead00e2bd38 buildtools/conf/MonetDB.m4

MonetDB: Oct2010 - use clang-supported optimization options with...

2010-12-07 Thread Stefan Manegold
Changeset: 8ebbfd337e71 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=8ebbfd337e71 Modified Files: buildtools/conf/MonetDB.m4 Branch: Oct2010 Log Message: use clang-supported optimization options with CC=clang & --enable-optimize diffs (36 lines): diff -r 5c48688

MonetDB: Oct2010 - fixed typo in gcc option: -fomie-frame-pointe...

2010-12-07 Thread Stefan Manegold
Changeset: 5c48688e711b for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=5c48688e711b Modified Files: buildtools/conf/MonetDB.m4 Branch: Oct2010 Log Message: fixed typo in gcc option: -fomie-frame-pointer -> -fomit-frame-pointer diffs (12 lines): diff -r b72768d848f

MonetDB: default - Include dlfcn.h for dlopen.

2010-12-07 Thread Sjoerd Mullender
Changeset: 3f4d7d858285 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=3f4d7d858285 Modified Files: MonetDB/src/gdk/gdk_posix.mx Branch: default Log Message: Include dlfcn.h for dlopen. diffs (17 lines): diff -r a856cb5aa0cd -r 3f4d7d858285 MonetDB/src/gdk/gdk_pos

Re: MonetDB: Oct2010 - avoid (disguise) self-comparison to fix compi...

2010-12-07 Thread Sjoerd Mullender
On 2010-12-07 21:54, Stefan Manegold wrote: > Hm, good idea, but unfortunately GDK_FAIl & GDK_SUCCESS are enums, not > macros, hence, I guess the C preporcessor does not know them, does it? > > MonetDB/src/gdk/gdk.mx:642:typedef enum { GDK_FAIL, GDK_SUCCEED } gdk_return; Hmm. You're right. > St

Re: MonetDB: Oct2010 - avoid (disguise) self-comparison to fix compi...

2010-12-07 Thread Stefan Manegold
Hm, good idea, but unfortunately GDK_FAIl & GDK_SUCCESS are enums, not macros, hence, I guess the C preporcessor does not know them, does it? MonetDB/src/gdk/gdk.mx:642:typedef enum { GDK_FAIL, GDK_SUCCEED } gdk_return; Stefan On Tue, Dec 07, 2010 at 09:04:04PM +0100, Sjoerd Mullender wrote: > S

Re: MonetDB: Oct2010 - avoid (disguise) self-comparison to fix compi...

2010-12-07 Thread Sjoerd Mullender
Since all uses of ll_return seem to use constants, this could be handled by the C preprocessor. On 2010-12-07 19:42, Stefan Manegold wrote: > Changeset: b72768d848f0 for MonetDB > URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=b72768d848f0 > Modified Files: > pathfinder/runtime/ll

MonetDB: default - Merge with Oct2010 branch.

2010-12-07 Thread Stefan Manegold
Changeset: a856cb5aa0cd for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=a856cb5aa0cd Modified Files: MonetDB5/src/scheduler/run_octopus.mx pathfinder/compiler/algebra/algebra.c Branch: default Log Message: Merge with Oct2010 branch. diffs (66 lines): diff -

MonetDB: default - removed remaining traces of obsolete sysdefs.h

2010-12-07 Thread Stefan Manegold
Changeset: 779a223278cd for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=779a223278cd Modified Files: buildtools/conf/MonetDB.m4 sql/src/backends/monet5/merovingian/client/Makefile.ag sql/src/backends/monet5/merovingian/utils/Makefile.ag Branch: default

MonetDB: Oct2010 - avoid logical or with constant operand to fix...

2010-12-07 Thread Stefan Manegold
Changeset: d88d208736b4 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=d88d208736b4 Modified Files: pathfinder/compiler/algebra/algebra.c Branch: Oct2010 Log Message: avoid logical or with constant operand to fix compilation with clang 2.8 on 64-bit Fedora 14: path

MonetDB: Oct2010 - avoid (disguise) self-comparison to fix compi...

2010-12-07 Thread Stefan Manegold
Changeset: b72768d848f0 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=b72768d848f0 Modified Files: pathfinder/runtime/ll_staircasejoin.mx Branch: Oct2010 Log Message: avoid (disguise) self-comparison to fix compilation with clang 2.8 on 64-bit Fedora 14: pathfinde

MonetDB: Oct2010 - fixed LENFMT for SQLLEN on 64-bit:

2010-12-07 Thread Stefan Manegold
Changeset: 7025b1ade639 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=7025b1ade639 Modified Files: clients/src/odbc/driver/ODBCGlobal.h Branch: Oct2010 Log Message: fixed LENFMT for SQLLEN on 64-bit: SQLLEN appears to be typedef long (not typedef long long); hence,

MonetDB: Oct2010 - avoid empty format string to fix compilation ...

2010-12-07 Thread Stefan Manegold
Changeset: 20ffa86c47f7 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=20ffa86c47f7 Modified Files: pathfinder/compiler/debug/abssynprint.c Branch: Oct2010 Log Message: avoid empty format string to fix compilation with clang 2.8 on 64-bit Fedora 14: pathfinder/compi

MonetDB: Oct2010 - circumvent potential bug(?) in clang 2.8 on 6...

2010-12-07 Thread Stefan Manegold
Changeset: 0fcb42042226 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=0fcb42042226 Modified Files: MonetDB5/src/scheduler/run_octopus.mx Branch: Oct2010 Log Message: circumvent potential bug(?) in clang 2.8 on 64-bit Fedora 14: With declaration int i; following dec

MonetDB: default - Remove superfluous -I flags.

2010-12-07 Thread Sjoerd Mullender
Changeset: 711cc7e806c4 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=711cc7e806c4 Modified Files: sql/NT/rules.msc Branch: default Log Message: Remove superfluous -I flags. There are no longer any files in the include/MonetDB directory. There is no such thing as a

MonetDB: default - Fix compilation on Windows with the new all-i...

2010-12-07 Thread Sjoerd Mullender
Changeset: ee2118ce3244 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=ee2118ce3244 Modified Files: buildtools/autogen/autogen/msc.py buildtools/conf/wincompile.py Branch: default Log Message: Fix compilation on Windows with the new all-in-one DLL for MonetDB

MonetDB: default - Remove duplicates.

2010-12-07 Thread Sjoerd Mullender
Changeset: 12200f08480b for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=12200f08480b Modified Files: buildtools/conf/winrules.msc Branch: default Log Message: Remove duplicates. $(INCLUDES) is already part of $(CFLAGS), so there is no need to include it again. diffs

MonetDB: default - Fix getting symbols from DLL on Windows.

2010-12-07 Thread Sjoerd Mullender
Changeset: c1a6d07b399e for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=c1a6d07b399e Modified Files: MonetDB/src/gdk/gdk_posix.mx MonetDB5/src/mal/mal_linker.mx MonetDB5/src/tools/Makefile.ag Branch: default Log Message: Fix getting symbols from DLL on

MonetDB: default - Fix references to libraries.

2010-12-07 Thread Sjoerd Mullender
Changeset: 78307a765849 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=78307a765849 Modified Files: MonetDB5/NT/rules.msc MonetDB5/src/extras/crackers/Makefile.ag MonetDB5/src/extras/xml/Makefile.ag buildtools/conf/winrules.msc pathfind

MonetDB: default - Don't reference global variables in another DLL.

2010-12-07 Thread Sjoerd Mullender
Changeset: 2e24f9d7c7ef for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=2e24f9d7c7ef Modified Files: MonetDB5/src/tools/embeddedclient.c.in Branch: default Log Message: Don't reference global variables in another DLL. diffs (29 lines): diff -r 78307a765849 -r 2e24f

MonetDB: default - Remove LIBS from NOINST library.

2010-12-07 Thread Sjoerd Mullender
Changeset: a91cac41e736 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=a91cac41e736 Modified Files: buildtools/autogen/autogen/msc.py geom/src/lib/Makefile.ag Branch: default Log Message: Remove LIBS from NOINST library. It makes no sense adding libraries to

MonetDB: default - Fix function exporting.

2010-12-07 Thread Sjoerd Mullender
Changeset: c4d50d00c802 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=c4d50d00c802 Modified Files: MonetDB5/src/mal/mal.mx MonetDB5/src/modules/atoms/blob.mx MonetDB5/src/modules/atoms/color.mx MonetDB5/src/modules/atoms/identifier.mx

MonetDB: default - removing more set but unused variables to fix...

2010-12-07 Thread Stefan Manegold
Changeset: 1c96e9135bc8 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=1c96e9135bc8 Modified Files: sql/src/backends/monet5/sql.mx sql/src/server/rel_bin.c sql/src/server/sql_rel2bin.c Branch: default Log Message: removing more set but unused variable

MonetDB: default - sql_semantic.c:575: variable old was set but ...

2010-12-07 Thread Fabian Groffen
Changeset: 56014c8b6e5d for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=56014c8b6e5d Modified Files: sql/src/server/sql_semantic.c Branch: default Log Message: sql_semantic.c:575: variable old was set but never used diffs (19 lines): diff -r 56c95b978317 -r 56014c8

MonetDB: default - rel_optimizer.c:1714: variable o was set but ...

2010-12-07 Thread Fabian Groffen
Changeset: 56c95b978317 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=56c95b978317 Modified Files: sql/src/server/rel_optimizer.c Branch: default Log Message: rel_optimizer.c:1714: variable o was set but never used diffs (15 lines): diff -r 3e511952f921 -r 56c95b