Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!husc6!hao!oddjob!gargoyle!ihnp4!homxb!mtuxo!mtune!codas!killer!tness1!mechjgh From: mechjgh@tness1.UUCP (2771) Newsgroups: comp.emacs Subject: Re: Having troubles getting 18.49 running Message-ID: <256@tness1.UUCP> Date: Sat, 17-Oct-87 23:37:27 EDT Article-I.D.: tness1.256 Posted: Sat Oct 17 23:37:27 1987 Date-Received: Thu, 22-Oct-87 00:00:06 EDT References: <1821591@ncrcpx.UUCP> Reply-To: mechjgh@tness1.UUCP (Greg Hackney 214+464-2771) Distribution: na Organization: S.W. Bell, Network Engineering, Houston Lines: 30 Keywords: emacs troubles In article <1821591@ncrcpx.UUCP> craig@ncrcpx.NCR.COM (R. Craig Peterson) writes: >when I try and "compile" I get this: > ./temacs -batch -l inc-vers > Fatal error (11).*** Termination code 139 I assume by your address that you are on an NCR Tower... Try replacing the crt0.c file with the following code. Greg Hackney Southwestern Bell Telephone Co. mechjgh@tness1.UUCP Dallas, Texas {ihnp4,killer,petro}!tness1!mechjgh "What hath God wrought?" --< crt0.c cut here>--- int data_start = 0; char **environ; _start () { start1 (); } start1 (argc, xargv) int argc; char *xargv; { register char **argv = &xargv; environ = argv + argc + 1; if ((char *)environ == xargv) environ--; exit (main (argc, argv, environ)); }