From: Jean-Marc Lasgouttes Date: Thu, 25 Apr 2002 08:28:53 +0000 (+0000) Subject: more fixes to grace converters X-Git-Tag: 1.6.10~19341 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=30e9e3379d8179b71221fd560c255fc44ddcc5ed;p=features.git more fixes to grace converters git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@4066 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/lib/ChangeLog b/lib/ChangeLog index 4f1e7b2fae..fce91a96c6 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,3 +1,8 @@ +2002-04-25 Rob Lahaye + + * configure.m4: use gracebat instead of xmgrace in the Grace converters + to make the conversion independent of the availability of an Xserver + 2002-04-25 Jean-Marc Lasgouttes * doc/ExternalMaterial.lyx: remove, since it has been included in diff --git a/lib/configure.m4 b/lib/configure.m4 index 9fbf2391a7..6ce98bb726 100644 --- a/lib/configure.m4 +++ b/lib/configure.m4 @@ -404,16 +404,13 @@ esac SEARCH_PROG([for a Grace -> Image converter], GRACE, gracebat) case $GRACE in gracebat) - for device in `gracebat -version 2>/dev/null | grep "^Dummy"` ; do - case $device in - EPS) - agr_to_eps="xmgrace -hardcopy -printfile \$\$o -hdevice $device \$\$i";; - PDF) - agr_to_pdf="xmgrace -hardcopy -printfile \$\$o -hdevice $device \$\$i";; - PNG) - agr_to_png="xmgrace -hardcopy -printfile \$\$o -hdevice $device \$\$i";; - esac - done + for device in `gracebat -version 2>/dev/null | grep "^Dummy"` ; do + case $device in + EPS) agr_to_eps="gracebat -hardcopy -printfile \$\$o -hdevice $device \$\$i 2>/dev/null";; + PDF) agr_to_pdf="gracebat -hardcopy -printfile \$\$o -hdevice $device \$\$i 2>/dev/null";; + PNG) agr_to_png="gracebat -hardcopy -printfile \$\$o -hdevice $device \$\$i 2>/dev/null";; + esac + done esac #### Explore the LaTeX configuration