diff options
author | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2008-05-06 08:22:54 +0000 |
---|---|---|
committer | Ion-Mihai Tetcu <itetcu@FreeBSD.org> | 2008-05-06 08:22:54 +0000 |
commit | c9d9329487adcbfdfcf3192a425a5b6d678e8ef3 (patch) | |
tree | bc1778cd70673304e6bc1b23af0db9d006582859 /cad | |
parent | 525b0afd0b439980f216d60674ab381b28c00d42 (diff) | |
download | ports-c9d9329487adcbfdfcf3192a425a5b6d678e8ef3.tar.gz ports-c9d9329487adcbfdfcf3192a425a5b6d678e8ef3.zip |
Notes
Diffstat (limited to 'cad')
-rw-r--r-- | cad/varkon/files/patch-IG+src+varkon.c | 110 |
1 files changed, 99 insertions, 11 deletions
diff --git a/cad/varkon/files/patch-IG+src+varkon.c b/cad/varkon/files/patch-IG+src+varkon.c index 3d8e447aae75..378aff99422d 100644 --- a/cad/varkon/files/patch-IG+src+varkon.c +++ b/cad/varkon/files/patch-IG+src+varkon.c @@ -1,19 +1,107 @@ ---- IG/src/varkon.c.orig 2008-04-23 13:36:40.000000000 -0500 -+++ IG/src/varkon.c 2008-04-23 13:40:00.000000000 -0500 -@@ -257,14 +257,14 @@ +--- IG/src/varkon.c 2008/02/29 11:24:13 93 ++++ IG/src/varkon.c 2008/04/29 06:04:18 100 +@@ -205,29 +205,32 @@ + /********************************************************/ + + #ifdef UNIX +- int main(ac,av) +- int ac; /* arg. count */ +- char *av[]; /* argument vector */ ++ int main( ++ int ac, /* arg. count */ ++ char *av[]) /* argument vector */ + #endif + + #ifdef WIN32 + int WINAPI WinMain( +- HINSTANCE inst, +- HINSTANCE prev_instr, +- LPSTR args, +- int wmode) ++ HINSTANCE inst, ++ HINSTANCE prev_instr, ++ LPSTR args, ++ int wmode) + #endif + + /* Main program for xvarkon/VARKON.EXE. Inits the + * graphical environment, processes command line + * parameters and inits various sub packages like + * memory allocation, geometry, debug etc. then +- * calls the main loop. ++ * calls the main loop. A logfile is created during ++ * startup and deleted when the system exits. + * + * (C)microform ab 31/10/95 J. Kjellander + * + * 2007-01-05 Major rewrite, J.Kjellander + * 2007-11-18 2.0, J.Kjellander ++ * 2008-04-28 Logfile to VARKON_TMP, J.Kjellander ++ * 2008-04-28 Default jobdir = $HOME, J.Kjellander + * + ******************************************************!*/ + +@@ -255,10 +258,17 @@ + exit(-1); + } /* - ***Open startup_logfile. +-***Open startup_logfile. ++***Open startup_logfile Varkon.LOG. Use VARKON_TMP ++***which should be writable for all users. */ - strcpy(lfname,getenv("VARKON_ROOT")); -+ strcpy(lfname,getenv("VARKON_TMP")); - strcat(lfname,"/varkon.LOG"); +- strcat(lfname,"/varkon.LOG"); ++ if ( getenv("VARKON_TMP") == NULL ) ++ { ++ printf("VARKON_TMP is not defined !\n"); ++ exit(-1); ++ } ++ ++ strncpy(lfname,getenv("VARKON_TMP"),V3PTHLEN); ++ strncat(lfname,"/Varkon.LOG",V3STRLEN); if ( (startup_logfile=fopen(lfname,"w")) == NULL ) { printf("Can't open startup_logfile %s\n",lfname); - exit(-1); - } -- fprintf(startup_logfile,"VARKON_ROOT is %s\n",getenv("VARKON_ROOT")); -+ fprintf(startup_logfile,"VARKON_TMP is %s\n",getenv("VARKON_TMP")); +@@ -391,11 +401,11 @@ fflush(startup_logfile); /* - ***System is now starting up. + ***job directory. If a job directory was not specified +-***on the command line use VARKON_ROOT. ++***on the command line use $HOME. + */ + if ( jobdir[0] == '\0' ) + { +- strcpy(jobdir,getenv("VARKON_ROOT")); ++ strcpy(jobdir,getenv("HOME")); + } + + if ( jobdir[strlen(jobdir)-1] != '/' ) strcat(jobdir,"/"); +@@ -504,8 +514,8 @@ + } + WPalla("",2); + WPalla("Something is wrong with your Varkon installation.",1); +- WPalla("This startup log is stored as varkon.LOG on your Varkon",1); +- WPalla("installation root directory and can be a good help to",1); ++ WPalla("This startup log is stored as Varkon.LOG in your Varkon",1); ++ WPalla("temp directory and can be a good help to",1); + WPalla("understand what the problem is.",2); + WPalla("If you need help, you can contact the Varkon developers",1); + WPalla("through the development site:",2); +@@ -530,7 +540,7 @@ + } + + /********************************************************/ +-/*!******************************************************/ ++/********************************************************/ + + static short process_cmdline( + int argc, +@@ -741,7 +751,7 @@ + } + + /********************************************************/ +-/*!******************************************************/ ++/********************************************************/ + + short IGcheck_jobname(char jobnam[]) + |