version 1.5, 2001/09/18 08:29:26 |
version 1.10, 2003/01/16 08:27:23 |
|
|
/* $OpenXM: OpenXM/rc/repl.c,v 1.4 2001/08/29 11:18:58 takayama Exp $ */ |
/* $OpenXM: OpenXM/rc/repl.c,v 1.9 2003/01/16 07:57:42 maekawa Exp $ */ |
|
|
#include <stdio.h> |
#include <stdio.h> |
#include <unistd.h> |
#include <stdlib.h> |
|
|
|
#include <errno.h> |
#include <string.h> |
#include <string.h> |
|
#include <unistd.h> |
|
|
#define BUFSIZE 10000 |
#define BUFSIZE 10000 |
|
|
|
int |
main(int argc,char *argv[]) { |
main(int argc,char *argv[]) { |
char s[BUFSIZE]; |
char s[BUFSIZE]; |
char cwd[BUFSIZE]; |
char cwd[BUFSIZE]; |
Line 17 main(int argc,char *argv[]) { |
|
Line 23 main(int argc,char *argv[]) { |
|
} |
} |
} |
} |
|
|
getcwd(cwd,BUFSIZE); |
if (getcwd(cwd, sizeof(cwd)) == NULL) { |
slash = strrchr(cwd,'/'); |
fprintf(stderr, "getcwd: %s\n", strerror(errno)); |
|
exit(1); |
|
} |
|
if ((slash = strrchr(cwd, '/')) == cwd) { |
|
fprintf(stderr, "The current working directory is /.\n"); |
|
exit(1); |
|
} |
*slash = 0; |
*slash = 0; |
while (fgets(s,BUFSIZE,stdin) != NULL) { |
while (fgets(s,BUFSIZE,stdin) != NULL) { |
if (strcmp(s,"OpenXM_HOME=$HOME/OpenXM\n") == 0) { |
if (strcmp(s,"OpenXM_HOME=$HOME/OpenXM\n") == 0) { |
Line 34 main(int argc,char *argv[]) { |
|
Line 46 main(int argc,char *argv[]) { |
|
/* Check if pstoimg (src/asir-contrib) supports png format. */ |
/* Check if pstoimg (src/asir-contrib) supports png format. */ |
fp = fopen("/tmp/repl_test.ps","w"); |
fp = fopen("/tmp/repl_test.ps","w"); |
if (fp == NULL) { |
if (fp == NULL) { |
fprintf(stderr,"Open error of /tmp/repl_test.ps\n"); |
fprintf(stderr,"Open error of /tmp/repl_test.ps. Use the existing file.\n"); |
exit(10); |
}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 (!system("pstoimg -type png /tmp/repl_test.ps -out /tmp/repl_test.png >/dev/null")) { |
if (type == 'b') { |
if (type == 'b') { |
printf("export OpenXM_PSTOIMG_TYPE=png\n"); |
printf("export OpenXM_PSTOIMG_TYPE=png\n"); |
Line 58 main(int argc,char *argv[]) { |
|
Line 70 main(int argc,char *argv[]) { |
|
printf("OpenXM_PSTOIMG_TYPE=no\n"); |
printf("OpenXM_PSTOIMG_TYPE=no\n"); |
printf("export OpenXM_PSTOIMG_TYPE\n"); |
printf("export OpenXM_PSTOIMG_TYPE\n"); |
} |
} |
/* system("rm -f /tmp/repl_test.*"); */ |
system("rm -f /tmp/repl_test.*"); |
|
|
|
|
exit(0); |
exit(0); |
} |
} |
|
|
|
|
|
|