disabling --persist because on our arm board it confuses things

with --persist enabled even something basic like

 seq 5 | feedgnuplot --terminal dumb

does not work. feedgnuplot simply sits there doing nothing. This is likely a
gnuplot bug. Those boards run an older gnuplot build, and I can't easily install
a new one to test. It's possible the newer gnuplots fix this, but it's easier to
release a new feedgnuplot instead
This commit is contained in:
Dima Kogan 2014-08-22 14:54:06 -07:00
parent 0c32afacfd
commit 8cc51461a3

View File

@ -454,12 +454,6 @@ sub makeDomainNumeric
sub mainThread
{
local *PIPE;
my $dopersist = '';
if( !$options{stream} && getGnuplotVersion() >= 4.3)
{
$dopersist = '--persist';
}
if(exists $options{dump})
{
@ -469,7 +463,7 @@ sub mainThread
{
my $geometry = defined $options{geometry} ?
"-geometry $options{geometry}" : '';
open PIPE, "|gnuplot $geometry $dopersist" or die "Can't initialize gnuplot\n";
open PIPE, "|gnuplot $geometry" or die "Can't initialize gnuplot\n";
}
autoflush PIPE 1;