=================================================================== RCS file: /home/cvs/OpenXM/rc/repl.c,v retrieving revision 1.4 retrieving revision 1.7 diff -u -p -r1.4 -r1.7 --- OpenXM/rc/repl.c 2001/08/29 11:18:58 1.4 +++ OpenXM/rc/repl.c 2002/04/05 01:55:59 1.7 @@ -1,4 +1,4 @@ -/* $OpenXM: OpenXM/rc/repl.c,v 1.3 2000/01/20 02:34:49 noro Exp $ */ +/* $OpenXM: OpenXM/rc/repl.c,v 1.6 2002/04/05 01:49:09 takayama Exp $ */ #include #include #include @@ -34,13 +34,13 @@ main(int argc,char *argv[]) { /* 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(stderr,"Open error of /tmp/repl_test.ps. Use the existing file.\n"); + }else{ + fprintf(fp,"/Times-Roman findfont 10 scalefont setfont\n"); + fprintf(fp," 390 290 moveto (F) show \n"); + fprintf(fp,"showpage \n"); + fclose(fp); } - 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"); @@ -49,14 +49,16 @@ main(int argc,char *argv[]) { } }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"); + printf("OpenXM_PSTOIMG_TYPE=gif\n"); + printf("export OpenXM_PSTOIMG_TYPE\n"); }else{ printf("setenv OpenXM_PSTOIMG_TYPE=gif\n"); } }else { - printf("export OpenXM_PSTOIMG_TYPE=no\n"); + printf("OpenXM_PSTOIMG_TYPE=no\n"); + printf("export OpenXM_PSTOIMG_TYPE\n"); } - /* system("rm -f /tmp/repl_test.*"); */ + system("rm -f /tmp/repl_test.*"); exit(0);