Fix xforms home page URL; small bug in lib/configure when layout files are not readable

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@447 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Jean-Marc Lasgouttes 2000-01-25 18:06:26 +00:00
parent 7529272c36
commit f3a412f0f8
4 changed files with 9 additions and 5 deletions

View File

@ -1,6 +1,10 @@
2000-01-25 Jean-Marc Lasgouttes <Jean-Marc.Lasgouttes@inria.fr>
* src/table.C (calculate_width_of_column): add using std::max
* INSTALL: update xforms home page URL.
* lib/configure.m4: fix a bug with unreadable layout files.
* src/table.C (calculate_width_of_column): add "using std::max"
directive.
2000-01-25 Lars Gullik Bjønnes <larsbj@lyx.org>

View File

@ -44,8 +44,8 @@ Xforms is available (free) only in binary format, source code is not
available. If it is not available for your machine, contact the Xforms
developers to request a version for your system. You can get it from
http://bragg.phys.uwm.edu/xforms
ftp://bragg.phys.uwm.edu/pub/xforms/
http://world.std.com/~xforms/
ftp://ncmir.ucsd.edu/pub/xforms/
ftp://ftp.lyx.org/pub/xforms/
ftp://ftp.fu-berlin.de/unix/X11/gui/xforms
ftp://ftp.cs.ruu.nl/pub/XFORMS/

2
lib/configure vendored
View File

@ -785,7 +785,7 @@ EOF
for file in ./layouts/*.layout ${srcdir}/layouts/*.layout ; do
case $file in
*/\*.layout) ;;
*) echo $file ;;
*) test -r "$file" && echo $file ;;
esac
done | sed -e 's%^.*layouts/\(.*\)\.layout$%\\TestDocClass{\1}%'\
> chklayouts.tex

View File

@ -285,7 +285,7 @@ EOF
for file in ./layouts/*.layout ${srcdir}/layouts/*.layout ; do
case $file in
*/\*.layout) ;;
*) echo $file ;;
*) test -r "$file" && echo $file ;;
esac
done | sed -e 's%^.*layouts/\(.*\)\.layout$%\\TestDocClass{\1}%'\
> chklayouts.tex