Path: utzoo!attcan!uunet!bfmny0!tneff From: tneff@bfmny0.UU.NET (Tom Neff) Newsgroups: comp.unix.xenix Subject: Re: emacs 18.55 Keywords: emacs 18.55 Message-ID: <15353@bfmny0.UU.NET> Date: 12 Apr 90 01:58:56 GMT References: <31@grumbly.UUCP> Reply-To: tneff@bfmny0.UU.NET (Tom Neff) Lines: 34 In article <31@grumbly.UUCP> root@grumbly.com writes: >Has anyone made emacs 18.55 with the SCO Unix dev syst? [cc or rcc] >I'm using the m-intel386.h and s-usg5-3.h files. Seem to be >getting problems with TIOCGETC, winsize , ws_row, etc (at one >time or another). A perfect example of why comp.unix.sco was a bad idea. This problem, and the fixes for it, have been around on all 386 V/386 Unix variants for quite some time. There are a couple of .h files not being included. Install this shell script somewhere you can use it: #! /bin/sh # This is a shell archive, meaning: # 1. Remove everything above the #! /bin/sh line. # 2. Save the resulting text in a file. # 3. Execute the file with /bin/sh (not csh) to create: # fhs # This archive created: Thu Apr 12 07:57:00 1990 export PATH; PATH=/bin:/usr/bin:$PATH if test -f 'fhs' then echo shar: "will not over-write existing file 'fhs'" else sed 's/^X//' << \SHAR_EOF > 'fhs' X# fhs - find a header file symbol Xcd /usr/include ; \ X /usr/bin/fgrep -n $* *.h ; \ X /usr/bin/fgrep -n $* sys/*.h SHAR_EOF chmod +x 'fhs' fi exit 0 # End of shell archive