Diff for /imach/src/imach.c between versions 1.150 and 1.151

version 1.150, 2014/06/18 16:42:35 version 1.151, 2014/06/18 16:43:30
Line 1 Line 1
 /* $Id$  /* $Id$
   $State$    $State$
   $Log$    $Log$
     Revision 1.151  2014/06/18 16:43:30  brouard
     *** empty log message ***
   
   Revision 1.150  2014/06/18 16:42:35  brouard    Revision 1.150  2014/06/18 16:42:35  brouard
   Summary: If gnuplot is not in the path try on same directory than imach binary (OSX)    Summary: If gnuplot is not in the path try on same directory than imach binary (OSX)
   Author: brouard    Author: brouard
Line 6667  Interval (in months) between two waves: Line 6670  Interval (in months) between two waves:
   printf("Starting graphs with: %s\n",plotcmd);fflush(stdout);    printf("Starting graphs with: %s\n",plotcmd);fflush(stdout);
   
   if((outcmd=system(plotcmd)) != 0){    if((outcmd=system(plotcmd)) != 0){
     printf("\n Problem with gnuplot command %s\n"plotcmd);      printf("\n Problem with gnuplot command %s\n", plotcmd);
     printf("\n Trying on same directory\n");      printf("\n Trying on same directory\n");
     sprintf(plotcmd,"./gnuplot %s", optionfilegnuplot);      sprintf(plotcmd,"./gnuplot %s", optionfilegnuplot);
     if((outcmd=system(plotcmd)) != 0)      if((outcmd=system(plotcmd)) != 0)

Removed from v.1.150  
changed lines
  Added in v.1.151


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>