Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!seismo!rutgers!sri-spam!mordor!lll-tis!ptsfa!ihnp4!laidbak!guardian From: guardian@laidbak.UUCP (Harry Skelton) Newsgroups: comp.lang.c,comp.unix.questions Subject: Re: A little prob with curses. Message-ID: <1081@laidbak.UUCP> Date: Wed, 1-Jul-87 09:50:15 EDT Article-I.D.: laidbak.1081 Posted: Wed Jul 1 09:50:15 1987 Date-Received: Thu, 2-Jul-87 06:44:15 EDT References: <1032@killer.UUCP> Reply-To: guardian@laidbak.UUCP (Harry Skelton(E)) Followup-To: 1023@killer.UUCP Organization: LAI Chicago Lines: 26 Keywords: curses Altos xenix Summary: Altos screw ups... Xref: mnetor comp.lang.c:2761 comp.unix.questions:3033 In article <1032@killer.UUCP> robertl@killer.UUCP (Robert Lord) writes: > >I am working on an Altos 2086 machine with Xenix, and having some trouble >with the curses package in C. I issue the command 'cc file.c -lcurses' >and it after a while it says: > >/bin/ld: Unresolved externals: >_tgoto in file(s): > /lib/Slibcurses.a(cr_tty.c) /lib/Slibcurses.a(cr_put.c) > >And this goes on for about 6 lines(differnt 'xxx in files' each time). The > Thanks, > Robert Lord > {ihnp4, seismo}!killer!robertl With the ld giving unresolved external, it seems that you forgot a variable to include into your source. Check the documentation and see where that external is used and how you must declare it. If not found under the curses section...check 'termcap' as in some systems, curses uses termcap routines. Harry Skelton guardian@laidbak.UUCP ihnp4!laidbak!guardian