mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
c7f0b54771
commit
72c8976ef8
@ -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.
|
||||||
|
|
@ -185,7 +185,8 @@ dnl Check the version of g++
|
|||||||
elif test $ac_cv_prog_cxx_g = yes; then
|
elif test $ac_cv_prog_cxx_g = yes; then
|
||||||
case $gxx_version in
|
case $gxx_version in
|
||||||
2.95.1) CXXFLAGS="-g $lyx_opt -fpermissive -fno-rtti -fno-exceptions";;
|
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.96*) CXXFLAGS="-g $lyx_opt -fno-exceptions";;
|
||||||
2.97*) CXXFLAGS="-g $lyx_opt -fvtable-thunks -fno-builtin -ffunction-sections -fdata-sections"
|
2.97*) CXXFLAGS="-g $lyx_opt -fvtable-thunks -fno-builtin -ffunction-sections -fdata-sections"
|
||||||
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE=1";;
|
CPPFLAGS="$CPPFLAGS -D_GNU_SOURCE=1";;
|
||||||
|
@ -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>
|
2001-01-20 Dekel Tsur <dekelts@tau.ac.il>
|
||||||
|
|
||||||
* languages: Add extra_options field. It is used to fix the ~n
|
* languages: Add extra_options field. It is used to fix the ~n
|
||||||
|
File diff suppressed because it is too large
Load Diff
@ -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>
|
2001-01-20 Dekel Tsur <dekelts@tau.ac.il>
|
||||||
|
|
||||||
* LaTeX.C (scanAux): Handle the \@input macro.
|
* LaTeX.C (scanAux): Handle the \@input macro.
|
||||||
|
@ -112,13 +112,15 @@ void TexRow::increasePos(int id, int pos) const
|
|||||||
if (id == (*kit).id()
|
if (id == (*kit).id()
|
||||||
&& pos < (*kit).pos()) {
|
&& pos < (*kit).pos()) {
|
||||||
(*kit).pos((*kit).pos() + 1);
|
(*kit).pos((*kit).pos() + 1);
|
||||||
lyxerr << "TeXRow::increasePos: ideally this "
|
lyxerr.debug()
|
||||||
|
<< "TeXRow::increasePos: ideally this "
|
||||||
"should never happen..." << endl;
|
"should never happen..." << endl;
|
||||||
}
|
}
|
||||||
// When verified to work this clause should be deleted.
|
// When verified to work this clause should be deleted.
|
||||||
if (id == (*kit).id()
|
if (id == (*kit).id()
|
||||||
&& pos == (*kit).pos()) {
|
&& pos == (*kit).pos()) {
|
||||||
lyxerr << "TexRow::increasePos: this should happen "
|
lyxerr.debug()
|
||||||
|
<< "TexRow::increasePos: this should happen "
|
||||||
"maximum one time for each run of "
|
"maximum one time for each run of "
|
||||||
"increasePos!" << endl;
|
"increasePos!" << endl;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user