Path: utzoo!attcan!uunet!mcvax!kth!draken!tut!ra!tucos!abo.fi!rosenbergr From: rosenbergr@abo.fi (Robin Rosenberg, Computer Science, ]bo Akademi) Newsgroups: comp.sys.amiga Subject: Re: Lattice VT100 source? (was Re: VT100 problem/bug)DOWN 18 Message-ID: <4693@abo.fi> Date: 14 Feb 89 11:22:45 GMT References: <9620@pasteur.Berkeley.EDU> <2030158@hpcilzb.HP.COM> <9812@pasteur.Berkeley.EDU> Organization: Abo Academy, Finland Lines: 18 > I compile VT100v2.8a, the compilation succeeds (no errors; just a few > harmless-looking warnings) but the executable gurus immediately when it > is started up (Guru #3 or #4, I think). > > Does anyone have a Lattice-compatible version of the VT100 sources, or at > least know from experience what magic incantations must be used to compile > it with Lattice? The documentation implies that either Manx or Lattice > can be used to compile it, but I haven't found any specific instructions... I had a little problem with vt1002.6 and Lattice 3.10 some time ago and this might well be the same. In the emulator source there is a function called dopen and one called dclose. Functions with the same name exists in the link libraraies so they are multiply defined. BLINK didn't warn me so the thing crashed. I fixed it by insertingn the following lines into vt100.h #define dopen xx_dopen #define dclose xx_dclose Then it worked