From f3a412f0f8f3aae86857d093bbae2dd5d2a28f3e Mon Sep 17 00:00:00 2001 From: Jean-Marc Lasgouttes Date: Tue, 25 Jan 2000 18:06:26 +0000 Subject: [PATCH] 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 --- ChangeLog | 6 +++++- INSTALL | 4 ++-- lib/configure | 2 +- lib/configure.m4 | 2 +- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/ChangeLog b/ChangeLog index 2f5283eec6..91e57bfecc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,10 @@ 2000-01-25 Jean-Marc Lasgouttes - * 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 diff --git a/INSTALL b/INSTALL index e33439b939..263e2b20cc 100644 --- a/INSTALL +++ b/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/ diff --git a/lib/configure b/lib/configure index c55472aae0..a1192e247c 100755 --- a/lib/configure +++ b/lib/configure @@ -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 diff --git a/lib/configure.m4 b/lib/configure.m4 index 3bda5573c2..3a96a0a5a3 100644 --- a/lib/configure.m4 +++ b/lib/configure.m4 @@ -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 -- 2.39.2