mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
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:
parent
7529272c36
commit
f3a412f0f8
@ -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>
|
||||
|
4
INSTALL
4
INSTALL
@ -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
2
lib/configure
vendored
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user