[comp.emacs] Having troubles getting 18.49 running

craig@ncrcpx.UUCP (R. Craig Peterson) (10/16/87)

I've applied patches to 18.47 to get up to 18.49 and now when I try
and "compile" I get this:

    cd /usr/acct/craig/Emacs/
    make -k
    cd etc; make  all
    cd src; make  all
    make -f xmakefile  all
    ./temacs -batch -l inc-vers
    Fatal error (11).*** Termination code 139
    `all' not remade because of errors

    Compilation finished at Fri Oct 16 13:23:01

Any suggestions of where to look for problems??  I can bring up temacs
without any problems, but as you can see when it tries to start up the
batch mode it moans about something...

Thanks.
-- 
R. Craig Peterson		"Next time someone asks you if you're a god
ncrlnk!ncrcam!ncrcpx!craig	 say YES!!"
N8INO					Ghost Busters
E Pluribus Unum 	(NSA stuff - terrorist, DES, cipher, secret, NRO, CIA)

mechjgh@tness1.UUCP (2771) (10/18/87)

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));
}