=================================================================== RCS file: /home/cvs/OpenXM/rc/repl.c,v retrieving revision 1.5 retrieving revision 1.8 diff -u -p -r1.5 -r1.8 --- OpenXM/rc/repl.c 2001/09/18 08:29:26 1.5 +++ OpenXM/rc/repl.c 2003/01/16 07:50:57 1.8 @@ -1,9 +1,13 @@ -/* $OpenXM: OpenXM/rc/repl.c,v 1.4 2001/08/29 11:18:58 takayama Exp $ */ +/* $OpenXM: OpenXM/rc/repl.c,v 1.7 2002/04/05 01:55:59 takayama Exp $ */ + #include +#include #include #include #define BUFSIZE 10000 + +int main(int argc,char *argv[]) { char s[BUFSIZE]; char cwd[BUFSIZE]; @@ -34,13 +38,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"); @@ -58,11 +62,8 @@ main(int argc,char *argv[]) { 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); } - - -