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*44621Sbostic static char sccsid[] = "@(#)CONFIG.c 5.3 (Berkeley) 06/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*44621Sbostic char *err_file = "LIBDATA/ERRORSTRINGS"; 28*44621Sbostic 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*44621Sbostic char *how_file = "LIBDATA/HOWFILE\0"; 36*44621Sbostic int how_pathlen = sizeof("LIBDATA/")-1; 376425Speter 386425Speter /* 396425Speter * things about the interpreter. 406425Speter * these are not used by the compiler. 416425Speter */ 4214727Sthien #ifndef PC 43*44621Sbostic char *px_header = "LIBEXEC/px_header"; /* px_header's name */ 4414727Sthien #endif 4514727Sthien 4615982Saoki #ifndef PXP 476425Speter char *pi_comp = "INSTALLDIR/pi"; /* the compiler's name */ 486425Speter char *px_intrp = "INSTALLDIR/px"; /* the interpreter's name */ 496425Speter char *px_debug = "INSTALLDIR/pdx"; /* the debugger's name */ 5014727Sthien #endif 51