=================================================================== RCS file: /home/cvs/OpenXM_contrib2/asir2000/parse/debug.c,v retrieving revision 1.12 retrieving revision 1.13 diff -u -p -r1.12 -r1.13 --- OpenXM_contrib2/asir2000/parse/debug.c 2003/02/14 22:29:18 1.12 +++ OpenXM_contrib2/asir2000/parse/debug.c 2003/03/07 03:12:31 1.13 @@ -45,7 +45,7 @@ * DEVELOPER SHALL HAVE NO LIABILITY IN CONNECTION WITH THE USE, * PERFORMANCE OR NON-PERFORMANCE OF THE SOFTWARE. * - * $OpenXM: OpenXM_contrib2/asir2000/parse/debug.c,v 1.11 2001/12/25 02:39:06 noro Exp $ + * $OpenXM: OpenXM_contrib2/asir2000/parse/debug.c,v 1.12 2003/02/14 22:29:18 ohara Exp $ */ #include "ca.h" #include "parse.h" @@ -216,7 +216,7 @@ void debug(SNODE f) extern int do_fep; NODE pvss; -#if !defined(MPI) && !defined(VISUAL) +#if !MPI && !defined(VISUAL) if ( !isatty(fileno(stdin)) && !do_server_in_X11 ) if ( do_file ) ExitAsir(); @@ -234,14 +234,14 @@ void debug(SNODE f) sprintf(prompt,"(debug) "); SETJMP(debug_env); while ( 1 ) { -#if defined(FEP) +#if FEP if ( !do_fep ) #endif if ( !do_server_in_X11 ) fputs(prompt,stderr); bzero(buf,BUFSIZ); while ( 1 ) { -#if defined(FEP) +#if FEP if ( do_fep ) { line = (char *)readline_console(prompt); strcpy(buf,line); free(line); @@ -700,7 +700,7 @@ void bp(SNODE f) CPVS->usrf->name,ln,CPVS->usrf->f.usrf->fname); targetf = CPVS->usrf; curline = ln; println(0,0,1); -#if !defined(MPI) && !defined(VISUAL) +#if !MPI && !defined(VISUAL) if ( do_server_in_X11 || isatty(0) ) #endif debug(f);