xref: /csrg-svn/usr.bin/pascal/src/CONFIG.c (revision 62203)
148116Sbostic /*-
2*62203Sbostic  * Copyright (c) 1980, 1993
3*62203Sbostic  *	The Regents of the University of California.  All rights reserved.
448116Sbostic  *
548116Sbostic  * %sccs.include.redist.c%
621950Sdist  */
721950Sdist 
821950Sdist #ifndef lint
9*62203Sbostic static char sccsid[] = "@(#)CONFIG.c	8.1 (Berkeley) 06/06/93";
1048116Sbostic #endif /* not lint */
1121950Sdist 
126403Speter     /*
136403Speter      *	make sure you are editing
146403Speter      *		CONFIG.c
156403Speter      *	editing config.c won't work
166403Speter      */
176403Speter 
186403Speter     /*
196403Speter      *	the version of translator
206403Speter      */
216425Speter char	*version = "VERSION (DATE)";
226403Speter 
236403Speter     /*
246403Speter      *	the location of the error strings
256403Speter      *	and the length of the path to it
266425Speter      *	(in case of execution as a.something)
276403Speter      */
2847715Sbostic char	*err_file = "LIBDATA/ERRORSTRINGS";
2944621Sbostic int	err_pathlen = sizeof("LIBDATA/")-1;
306403Speter 
316403Speter     /*
326403Speter      *	the location of the short explanation
336403Speter      *	and the length of the path to it
346403Speter      *	the null at the end is so pix can change it to pi'x' from pi.
356403Speter      */
3647715Sbostic char	how_string[] = "LIBDATA/HOWFILE\0";
3747715Sbostic char	*how_file = how_string;
3844621Sbostic int	how_pathlen = sizeof("LIBDATA/")-1;
396425Speter 
406425Speter     /*
416425Speter      *	things about the interpreter.
426425Speter      *	these are not used by the compiler.
436425Speter      */
4414727Sthien #ifndef PC
4544621Sbostic char	*px_header = "LIBEXEC/px_header";	/* px_header's name */
4614727Sthien #endif
4714727Sthien 
4815982Saoki #ifndef PXP
496425Speter char	*pi_comp = "INSTALLDIR/pi";		/* the compiler's name */
506425Speter char	*px_intrp = "INSTALLDIR/px";		/* the interpreter's name */
516425Speter char	*px_debug = "INSTALLDIR/pdx";		/* the debugger's name */
5214727Sthien #endif
53