>>>>> "Lars" == Lars Gullik Bjønnes <[EMAIL PROTECTED]> writes:
| Lars, stdlib-debug is currently enabled for prereleases. Could we at | least disable that? A prerelease should be compiled in the same | conditions as a real release... Lars> Or almost... leave assertions in f.ex. So, would the following patch be OK? JMarc
Index: config/ChangeLog =================================================================== RCS file: /usr/local/lyx/cvsroot/lyx-devel/config/ChangeLog,v retrieving revision 1.173 diff -u -p -r1.173 ChangeLog --- config/ChangeLog 8 Sep 2005 09:20:12 -0000 1.173 +++ config/ChangeLog 22 Sep 2005 08:23:22 -0000 @@ -1,3 +1,8 @@ +2005-09-22 Jean-Marc Lasgouttes <[EMAIL PROTECTED]> + + * lyxinclude.m4 (LYX_PROG_CXX): do not enable stdlib-debug for + prereleases. + 2005-09-08 Angus Leeming <[EMAIL PROTECTED]> * spell.m4: correct grammar describing invocation of the Index: config/lyxinclude.m4 =================================================================== RCS file: /usr/local/lyx/cvsroot/lyx-devel/config/lyxinclude.m4,v retrieving revision 1.114 diff -u -p -r1.114 lyxinclude.m4 --- config/lyxinclude.m4 18 Jul 2005 14:24:27 -0000 1.114 +++ config/lyxinclude.m4 22 Sep 2005 08:23:22 -0000 @@ -186,7 +186,7 @@ AC_ARG_ENABLE(debug, AC_ARG_ENABLE(stdlib-debug, AC_HELP_STRING([--enable-stdlib-debug],[enable debug mode in the standard library]),, - [ if test $lyx_devel_version = yes -o $lyx_prerelease = yes ; then + [ if test $lyx_devel_version = yes ; then enable_stdlib_debug=yes; else enable_stdlib_debug=no;