Changeset: 90fcd0afd619 for MonetDB URL: http://dev.monetdb.org/hg/MonetDB?cmd=changeset;node=90fcd0afd619 Modified Files: pathfinder/runtime/pf_support.mx Branch: Mar2011 Log Message:
Enable assertion always in pf_support.c. This fixes the problems on Fedora 14 with optimized builds with 64-bit OIDs. The problem is likely a compiler issue, but that should be verified. diffs (14 lines): diff --git a/pathfinder/runtime/pf_support.mx b/pathfinder/runtime/pf_support.mx --- a/pathfinder/runtime/pf_support.mx +++ b/pathfinder/runtime/pf_support.mx @@ -5967,6 +5967,10 @@ @c #include "monetdb_config.h" +#ifdef NDEBUG +#undef NDEBUG +#include <assert.h> +#endif #include "pf_support.h" #include "mutils.h" #include <gdk_scanselect.h> /* for type-specific HT_bunfastins_nocheck_noinc(), until they're moved to gdk.mx */ _______________________________________________ Checkin-list mailing list [email protected] http://mail.monetdb.org/mailman/listinfo/checkin-list
