diff options
-rw-r--r-- | ChangeLog | 13 | ||||
-rwxr-xr-x | bin/performance_stats.sh | 7 |
2 files changed, 19 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog index b95213dbfb8..a721a287d2c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Wed Sep 10 13:26:14 MST 2003 Trevor Fields <fields_t@ociweb.com> + + * bin/performance_stats.sh: + + Changed the path to mogrify. It uses /usr/bin/X11/bin path if it is + not present in the /usr/local/bin + Wed Sep 10 11:48:31 2003 Chad Elliott <elliott_c@ociweb.com> * bin/MakeProjectCreator/modules/TemplateParser.pm: @@ -60,6 +67,12 @@ Wed Sep 10 08:04:25 2003 Chad Elliott <elliott_c@ociweb.com> by multiple instances of make. This only has an effect on the GNUACE workspaces. +Tue Sep 9 15:04:51 MST 2003 Trevor Fields <fields_t@ociweb.com> + + * examples/Web_Crawler/Mem_Map_Stream.h: + + Changed '#define once' back to '#pragma once' + Tue Sep 9 08:56:42 2003 Jeff Parsons <j.parsons@vanderbilt.edu> * ace/ace_dll.dsp: diff --git a/bin/performance_stats.sh b/bin/performance_stats.sh index 5228fae6bad..13944f66040 100755 --- a/bin/performance_stats.sh +++ b/bin/performance_stats.sh @@ -168,11 +168,16 @@ _EOF_ /bin/cp CORBA.png All.png $DEST/images/ +MOGRIFY=/usr/local/bin/mogrify +if [ ! -x "$MOGRIFY" ]; then + MOGRIFY=/usr/X11R6/bin/mogrify +fi + ( cd $DEST/images /bin/cp *.png thumbnails for i in *.png; do - /usr/local/bin/mogrify -geometry '25%' thumbnails/$i + $MOGRIFY -geometry '25%' thumbnails/$i done ) |