fix boost compilation with gcc 3.3 ; fix dependency problems in patch ; fix writing of color entries in qt prefs (bug 1069) ; make sorting order in POTFILES locale-independent

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/branches/BRANCH_1_3_X@7050 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2003-05-27 12:45:52 +00:00
parent 64d175fb01
commit 7fbe351fd5
13 changed files with 54 additions and 15 deletions

View File

@ -1,3 +1,7 @@
2003-05-26 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* boost/config/compiler/gcc.hpp: accept gcc 3.3 as valid compiler
2003-03-31 Adrian Bunk <bunk@fs.tum.de>
* boost/integer_traits.hpp: compilation fix for NetBSD

View File

@ -50,7 +50,7 @@
#endif
//
// last known and checked version is 3.2:
#if (__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ > 2))
#if (__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ > 3))
# if defined(BOOST_ASSERT_CONFIG)
# error "Unknown compiler version - please run the configure tests and report the results"
# else

View File

@ -1,3 +1,8 @@
2003-05-26 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* relyx_configure.ac:
* relyx_configure.in: add AM_MAINTAINER_MODE here too.
2003-05-06 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* configure.in (VERSION):

View File

@ -7,6 +7,8 @@ AC_CONFIG_AUX_DIR(../../config)
dnl PACKAGE=reLyX
dnl Do this to install in $datadir/lyx/reLyX instead of $datadir/reLyX/reLyX
AM_MAINTAINER_MODE
AC_ARG_WITH(version-suffix,
[ --with-version-suffix[=<version>] install lyx files as lyx<version>],
[lyxname="lyx$withval"

View File

@ -7,6 +7,8 @@ AC_EXEEXT
dnl PACKAGE=reLyX
dnl Do this to install in $datadir/lyx/reLyX instead of $datadir/reLyX/reLyX
AM_MAINTAINER_MODE
AC_ARG_WITH(version-suffix,
[ --with-version-suffix[=<version>] install lyx files as lyx<version>],
[lyxname="lyx$withval"

View File

@ -1,3 +1,8 @@
2003-05-27 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* Makefile.in.in (POTFILES.in): make sure that the sorting order
is fixed.
2003-04-30 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* *.po: remerge.

View File

@ -201,7 +201,7 @@ ${srcdir}/POTFILES.in: $(POTFILE_IN_DEPS)
&& ( cd $(top_srcdir); \
grep -l "_(\".*\")" `find src -name \*.[hHC] -print` |\
sed -e '/xforms.forms/d' | \
sort | uniq ) > $@-t \
LC_COLLATE=C sort | uniq ) > $@-t \
&& mv $@-t $@

View File

@ -157,6 +157,7 @@ src/insets/insettheorem.C
src/insets/insettoc.C
src/insets/inseturl.C
src/insets/insetwrap.C
src/ispell.C
src/kbsequence.C
src/language.C
src/lengthcommon.C

View File

@ -1,3 +1,8 @@
2003-04-29 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* QPrefs.C (apply): only set colors if they are different from
their original values (bug 1069)
2003-05-26 John Levon <levon@movementarian.org>
* Toolbar_pimpl.C: work around Qt 3.1.2 bug with combo box

View File

@ -269,6 +269,11 @@ void QPrefs::apply()
QListBoxItem * ib(colmod->lyxObjectsLB->item(i));
QColorItem * ci(static_cast<QColorItem*>(ib));
LColor::color const col(dialog_->colors_[i]);
QColor const qcol(toqstr(lcolor.getX11Name(col)));
// FIXME: dubious, but it's what xforms does
if (qcol != ci->color()) {
ostringstream ostr;
ostr << '#' << std::setbase(16) << setfill('0')
@ -277,11 +282,6 @@ void QPrefs::apply()
<< setw(2) << ci->color().blue();
string newhex(STRCONV(ostr.str()));
LColor::color col(dialog_->colors_[i]);
// FIXME: dubious, but it's what xforms does
if (lcolor.getX11Name(col) != newhex) {
controller().setColor(col, newhex);
}
}

View File

@ -1,3 +1,8 @@
2003-05-26 Jean-Marc Lasgouttes <lasgouttes@lyx.org>
* forms/Makefile.am (EXTRA_DIST): do not forget to distribute
c_str.sed.
2003-04-09 Angus Leeming <leeming@lyx.org>
* FormAboutlyx.C:

View File

@ -1,6 +1,6 @@
include $(top_srcdir)/config/common.am
EXTRA_DIST = fdfixc.sed fdfixh.sed fdfix.sh README $(SRCS)
EXTRA_DIST = fdfixc.sed fdfixh.sed c_str.sed fdfix.sh README $(SRCS)
noinst_LTLIBRARIES = libfdesign.la

View File

@ -25,4 +25,14 @@ What's new
** Bug fixes
A Qt 3.1.2 bug with the environment combo box is worked around now [bug #1136]
- work around a Qt 3.1.2 bug with the environment combo box [bug #1136]
- do not write in preference file the colors which are still at their
default value [bug #1069, Qt only]
- it was not possible to view the french versions of the Extended and
Customization manual.
- add missing c_str.sed file in the distribution
- hopefully really fix problems with patch requiring aclocal-1.6