[BACK]Return to repl.c CVS log [TXT][DIR] Up to [local] / OpenXM / rc

Diff for /OpenXM/rc/repl.c between version 1.3 and 1.4

version 1.3, 2000/01/20 02:34:49 version 1.4, 2001/08/29 11:18:58
Line 1 
Line 1 
 /* $OpenXM: OpenXM/rc/repl.c,v 1.2 2000/01/19 06:10:33 noro Exp $ */  /* $OpenXM: OpenXM/rc/repl.c,v 1.3 2000/01/20 02:34:49 noro Exp $ */
 #include <stdio.h>  #include <stdio.h>
 #include <unistd.h>  #include <unistd.h>
 #include <string.h>  #include <string.h>
   
 #define BUFSIZE 10000  #define BUFSIZE 10000
 main() {  main(int argc,char *argv[]) {
   char s[BUFSIZE];    char s[BUFSIZE];
   char cwd[BUFSIZE];    char cwd[BUFSIZE];
   char *slash;    char *slash;
     char type = 'b';
     FILE *fp;
   
     if (argc >= 2) {
           if (strcmp(argv[1],"csh")==0) {
             type = 'c';
           }
     }
   
   getcwd(cwd,BUFSIZE);    getcwd(cwd,BUFSIZE);
   slash = strrchr(cwd,'/');    slash = strrchr(cwd,'/');
   *slash = 0;    *slash = 0;
Line 21  main() {
Line 29  main() {
           printf("%s",s);            printf("%s",s);
         }          }
   }    }
   
     /* Configuring environmental variables. */
     /* Check if pstoimg (src/asir-contrib) supports png format. */
     fp = fopen("/tmp/repl_test.ps","w");
     if (fp == NULL) {
           fprintf(stderr,"Open error of /tmp/repl_test.ps\n");
           exit(10);
     }
     fprintf(fp,"/Times-Roman findfont 10 scalefont setfont\n");
     fprintf(fp," 390 290 moveto  (F) show \n");
     fprintf(fp,"showpage \n");
     fclose(fp);
     if (!system("pstoimg -type png /tmp/repl_test.ps -out /tmp/repl_test.png >/dev/null")) {
           if (type == 'b') {
             printf("export OpenXM_PSTOIMG_TYPE=png\n");
           }else{
             printf("setenv OpenXM_PSTOIMG_TYPE png\n");
           }
     }else if (!system("pstoimg -type gif /tmp/repl_test.ps -out /tmp/repl_test.gif >/dev/null")) {
           if (type == 'b') {
             printf("export OpenXM_PSTOIMG_TYPE=gif\n");
           }else{
             printf("setenv OpenXM_PSTOIMG_TYPE=gif\n");
           }
     }else {
           printf("export OpenXM_PSTOIMG_TYPE=no\n");
     }
     /* system("rm -f /tmp/repl_test.*"); */
   
   
   exit(0);    exit(0);
 }  }
   

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4

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