artificial commit to compensate for changes in 93f3093f2b7e from a CVS
vendor branch
This commit is contained in:
commit
6061e972f1
1 changed files with 15 additions and 0 deletions
|
@ -195,9 +195,24 @@ open_in(name) register char *name ; {
|
||||||
}
|
}
|
||||||
/* Not in core */
|
/* Not in core */
|
||||||
incore= NO ;
|
incore= NO ;
|
||||||
|
#ifdef NEW
|
||||||
|
gr_cat(&rline,EM_DIR) ;
|
||||||
|
gr_cat(&rline,"/lib/n_ack/") ;
|
||||||
|
#else
|
||||||
gr_cat(&rline,ACK_DIR); gr_cat(&rline,"/") ;
|
gr_cat(&rline,ACK_DIR); gr_cat(&rline,"/") ;
|
||||||
|
#endif
|
||||||
gr_cat(&rline,name) ;
|
gr_cat(&rline,name) ;
|
||||||
infile= fopen(gr_start(rline),"r") ;
|
infile= fopen(gr_start(rline),"r") ;
|
||||||
|
#ifdef NEW
|
||||||
|
if ( !infile ) {
|
||||||
|
/* Try to read EM_DIR/lib/MACH/plan */
|
||||||
|
gr_throw(&rline) ;
|
||||||
|
gr_cat(&rline,EM_DIR) ;
|
||||||
|
gr_cat(&rline,"/lib/") ; gr_cat(&rline,name) ;
|
||||||
|
gr_cat(&rline,"/plan") ;
|
||||||
|
infile= fopen(gr_start(rline),"r") ;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
if ( !infile ) {
|
if ( !infile ) {
|
||||||
infile= fopen(name,"r") ;
|
infile= fopen(name,"r") ;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue