121950Sdist /* 221950Sdist * Copyright (c) 1980 Regents of the University of California. 321950Sdist * All rights reserved. The Berkeley software License Agreement 421950Sdist * specifies the terms and conditions for redistribution. 521950Sdist */ 621950Sdist 721950Sdist #ifndef lint 8*47715Sbostic static char sccsid[] = "@(#)CONFIG.c 5.3 (Berkeley) 6/29/90"; 921950Sdist #endif not lint 1021950Sdist 116403Speter /* 126403Speter * make sure you are editing 136403Speter * CONFIG.c 146403Speter * editing config.c won't work 156403Speter */ 166403Speter 176403Speter /* 186403Speter * the version of translator 196403Speter */ 206425Speter char *version = "VERSION (DATE)"; 216403Speter 226403Speter /* 236403Speter * the location of the error strings 246403Speter * and the length of the path to it 256425Speter * (in case of execution as a.something) 266403Speter */ 27*47715Sbostic char *err_file = "LIBDATA/ERRORSTRINGS"; 2844621Sbostic int err_pathlen = sizeof("LIBDATA/")-1; 296403Speter 306403Speter /* 316403Speter * the location of the short explanation 326403Speter * and the length of the path to it 336403Speter * the null at the end is so pix can change it to pi'x' from pi. 346403Speter */ 35*47715Sbostic char how_string[] = "LIBDATA/HOWFILE\0"; 36*47715Sbostic char *how_file = how_string; 3744621Sbostic int how_pathlen = sizeof("LIBDATA/")-1; 386425Speter 396425Speter /* 406425Speter * things about the interpreter. 416425Speter * these are not used by the compiler. 426425Speter */ 4314727Sthien #ifndef PC 4444621Sbostic char *px_header = "LIBEXEC/px_header"; /* px_header's name */ 4514727Sthien #endif 4614727Sthien 4715982Saoki #ifndef PXP 486425Speter char *pi_comp = "INSTALLDIR/pi"; /* the compiler's name */ 496425Speter char *px_intrp = "INSTALLDIR/px"; /* the interpreter's name */ 506425Speter char *px_debug = "INSTALLDIR/pdx"; /* the debugger's name */ 5114727Sthien #endif 52