Small fixes (gcc 2.95.3, cucumber and texrow messages)

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1366 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2001-01-22 16:10:19 +00:00
parent c7f0b54771
commit 72c8976ef8
6 changed files with 331 additions and 3907 deletions

View File

@ -0,0 +1,5 @@
2001-01-22 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* lyxinclude.m4 (LYX_PROG_CXX): do not use -fno-rtti for gcc
2.95.3.

View File

@ -185,7 +185,8 @@ dnl Check the version of g++
elif test $ac_cv_prog_cxx_g = yes; then
case $gxx_version in
2.95.1) CXXFLAGS="-g $lyx_opt -fpermissive -fno-rtti -fno-exceptions";;
2.95.*) CXXFLAGS="-g $lyx_opt -fno-rtti -fno-exceptions";;
2.95.2) CXXFLAGS="-g $lyx_opt -fno-rtti -fno-exceptions";;
2.95.*) CXXFLAGS="-g $lyx_opt -fno-exceptions";;
2.96*) CXXFLAGS="-g $lyx_opt -fno-exceptions";;
2.97*) CXXFLAGS="-g $lyx_opt -fvtable-thunks -fno-builtin -ffunction-sections -fdata-sections"
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE=1";;

View File

@ -1,3 +1,7 @@
2001-01-22 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* images/banner.xpm: revert to the cucumberless banner.
2001-01-20 Dekel Tsur <dekelts@tau.ac.il>
* languages: Add extra_options field. It is used to fix the ~n

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,8 @@
2001-01-22 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* texrow.C (increasePos): turn two error messages into debug
messages.
2001-01-20 Dekel Tsur <dekelts@tau.ac.il>
* LaTeX.C (scanAux): Handle the \@input macro.

View File

@ -112,13 +112,15 @@ void TexRow::increasePos(int id, int pos) const
if (id == (*kit).id()
&& pos < (*kit).pos()) {
(*kit).pos((*kit).pos() + 1);
lyxerr << "TeXRow::increasePos: ideally this "
lyxerr.debug()
<< "TeXRow::increasePos: ideally this "
"should never happen..." << endl;
}
// When verified to work this clause should be deleted.
if (id == (*kit).id()
&& pos == (*kit).pos()) {
lyxerr << "TexRow::increasePos: this should happen "
lyxerr.debug()
<< "TexRow::increasePos: this should happen "
"maximum one time for each run of "
"increasePos!" << endl;
}