home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-01-21 | 56.5 KB | 1,728 lines |
- diff -rc --new-file jove-4.14.6/Makefile.in /gnu/src/amiga/jove-4.14.6/Makefile.in
- *** jove-4.14.6/Makefile.in Thu Jan 1 00:00:00 1970
- --- /gnu/src/amiga/jove-4.14.6/Makefile.in Thu Jan 12 22:15:49 1995
- ***************
- *** 0 ****
- --- 1,448 ----
- + ###########################################################################
- + # This program is Copyright (C) 1986, 1987, 1988 by Jonathan Payne. JOVE #
- + # is provided to you without charge, and with no warranty. You may give #
- + # away copies of JOVE, including sources, provided that this notice is #
- + # included in all the files. #
- + ###########################################################################
- +
- + # TMPDIR is where the tmp files get stored, usually /tmp or /tmp/jove. If
- + # your system does not remove subdirectories of /tmp on reboot (lots do
- + # remove them these days) then it makes sense to make TMPDIR be /tmp/jove.
- + # But if you want to recover buffers on system crashes, you should create a
- + # directory that doesn't get cleaned upon reboot, and use that instead.
- + # You would probably want to clean out that directory periodically with
- + # /etc/cron.
- + # RECDIR is the directory in which RECOVER looks for JOVE's tempfiles.
- + #
- + # JOVEHOME is the directory in which pieces of JOVE are kept. It is only used
- + # in the default definitions of SHAREDIR, LIBDIR, BINDIR, and MANDIR.
- + # SHAREDIR is for online documentation, and the system-wide .joverc file.
- + # LIBDIR is for the PORTSRV and KBD processes and RECOVER.
- + # BINDIR is where to put the executables JOVE and TEACHJOVE.
- + # MANDIR is where the manual pages go for JOVE, RECOVER and TEACHJOVE.
- + # MANEXT is the extension for the man pages, e.g., jove.1 or jove.l or jove.m.
- + # DFLTSHELL is the default shell invoked by JOVE and TEACHJOVE.
- + #
- + # If they don't exist, this makefile will try to create the directories
- + # LIBDIR and SHAREDIR. All others must already exist.
- +
- + srcdir = @srcdir@
- + VPATH = @srcdir@
- +
- + prefix = @prefix@
- + exec_prefix = @exec_prefix@
- +
- + bindir = $(exec_prefix)/bin
- + libdir = $(exec_prefix)/lib
- + incdir = $(prefix)/include
- + infodir = $(prefix)/info
- +
- + INSTALL = @INSTALL@
- + INSTALL_PROGRAM = @INSTALL_PROGRAM@
- + INSTALL_DATA = @INSTALL_DATA@
- +
- + SHELL = /bin/sh
- + CC = @CC@
- + AR = ar
- + RM = rm
- + RANLIB = @RANLIB@
- + DEFS = @DEFS@
- + LIBS = @LIBS@ -ltermcap
- + CFLAGS = @CFLAGS@
- + LDFLAGS = @LDFLAGS@
- +
- + TMPDIR = /tmp
- + RECDIR = /tmp/preserve
- +
- + SHAREDIR = $(libdir)/jove
- + LIBDIR = $(libdir)/jove
- + MANDIR = $(exec_prefix)/man/cat1
- + MANEXT = 0
- +
- + PROG = jove
- + VERSION = 4.14
- +
- + # These should all just be right if the above ones are.
- + JOVE = $(bindir)/jove
- + TEACHJOVE = $(bindir)/teachjove
- + RECOVER = $(LIBDIR)/recover
- + PORTSRV = $(LIBDIR)/portsrv
- + KBD = $(LIBDIR)/kbd
- + JOVERC = $(SHAREDIR)/jove.rc
- + CMDS.DOC = $(SHAREDIR)/cmds.doc
- + TEACH-JOVE = $(SHAREDIR)/teach-jove
- + JOVEM = $(MANDIR)/jove.$(MANEXT)
- + TEACHJOVEM = $(MANDIR)/teachjove.$(MANEXT)
- +
- +
- + SEPFLAG =
- + SYSDEFS = -DBSD386
- + INCLUDES = -I. -I$(srcdir)
- + OUR_CFLAGS = $(SYSDEFS) $(DEFS) $(INCLUDES) $(CFLAGS)
- +
- + # For cross compiling Jove, set CC to the cross compiler, and LOCALC
- + # to the local C compiler. LOCALCC will be used for compiling setmaps,
- + # which is run as part of the compilation to generate the keymaps.
- + # Set LOCALCFLAGS and LOCALLDFLAGS appropriately too. For Xenix, note
- + # that LOCALCFLAGS must be set to $(MEMFLAGS)
- +
- + LOCALCC = $(CC)
- + LOCALCFLAGS = $(CFLAGS) # $(MEMFLAGS)
- + LOCALLDFLAGS = $(LDFLAGS)
- +
- + BASESEG = funcdefs.o keys.o argcount.o ask.o buf.o ctype.o delete.o \
- + disp.o insert.o io.o jove.o loadavg.o marks.o misc.o re.o \
- + screen.o tune.o util.o vars.o version.o list.o keymaps.o
- + OVLAY1 = abbrev.o rec.o paragraph.o fmt.o
- + OVLAY2 = c.o wind.o fp.o move.o
- + OVLAY3 = extend.o macros.o
- + OVLAY4 = iproc.o re1.o
- + OVLAY5 = proc.o scandir.o term.o case.o
- +
- + OBJECTS = $(BASESEG) $(OVLAY1) $(OVLAY2) $(OVLAY3) $(OVLAY4) $(OVLAY5)
- +
- + C_SRC = funcdefs.c abbrev.c argcount.c ask.c buf.c c.c case.c ctype.c \
- + delete.c disp.c extend.c fp.c fmt.c insert.c io.c iproc.c \
- + jove.c list.c loadavg.c macros.c marks.c misc.c move.c paragraph.c \
- + proc.c re.c re1.c rec.c scandir.c screen.c term.c util.c \
- + vars.c version.c wind.c getch.c mac.c keymaps.c pcscr.c
- +
- + SOURCES = $(C_SRC) portsrv.c recover.c setmaps.c teachjove.c kbd.c
- +
- + HEADERS = argcount.h buf.h chars.h ctype.h dataobj.h disp.h \
- + externs.h fp.h io.h iproc.h jove.h keymaps.h list.h mac.h \
- + re.h rec.h scandir.h screen.h sysdep.h temp.h termcap.h \
- + ttystate.h tune.h util.h vars.h wait.h wind.h
- +
- +
- + DOCS1 = doc/example.rc doc/jove.1 doc/jove.2 doc/jove.3 \
- + doc/jove.4 doc/jove.5 doc/jove.nr doc/system.rc \
- + doc/teach-jove doc/teachjove.nr doc/README doc/jove.qref
- + DOCS2 = doc/cmds.doc.nr
- + DOCS3 = doc/joveman doc/cmds.doc doc/manpage
- + DOCS = $(DOCS1) $(DOCS2)
- +
- + MISC = Makefile Makefile.dos tune.dos tune.template README Readme.dos \
- + Readme.mac iproc-pipes.c iproc-ptys.c
- +
- + SUPPORT = teachjove.c recover.c setmaps.c portsrv.c kbd.c keys.txt \
- + macvert.c menumaps.txt mjovers.Hqx
- +
- + BACKUPS = $(HEADERS) $(C_SRC) $(DOCS) $(SUPPORT) $(MISC)
- +
- + .c.o:
- + $(CC) -c $(OUR_CFLAGS) $<
- +
- + all : xjove recover teachjove
- +
- + xjove : $(OBJECTS)
- + $(CC) $(LDFLAGS) -o $@ $(OBJECTS) $(LIBS)
- +
- + portsrv : portsrv.o
- + $(CC) $(LDFLAGS) -o $@ $(SEPFLAG) portsrv.o $(LIBS)
- +
- + kbd : kbd.o
- + $(CC) $(LDFLAGS) -o $@ $(SEPFLAG) kbd.o $(LIBS)
- +
- + recover : rectune.h recover.o tune.o rec.h temp.h
- + $(CC) $(LDFLAGS) -o $@ $(SEPFLAG) recover.o tune.o $(LIBS)
- +
- + teachjove : teachjove.o
- + $(CC) $(LDFLAGS) -o $@ $(SEPFLAG) teachjove.o $(LIBS)
- +
- + setmaps : setmaps.o funcdefs.c
- + $(LOCALCC) $(LOCALLDFLAGS) -o $@ setmaps.o
- +
- + teachjove.o : teachjove.c /gnu/include/sys/types.h /gnu/include/sys/file.h
- + $(CC) -c $(OUR_CFLAGS) -DTEACHJOVE=\"$(TEACH-JOVE)\" $(srcdir)/teachjove.c
- +
- + setmaps.o: funcdefs.c keys.txt
- +
- + keys.c : setmaps keys.txt
- + -./setmaps <$(srcdir)/keys.txt >keys.c
- +
- + keys.o : keys.c jove.h
- +
- + tune.c: Makefile tune.template
- + -rm -f tune.c
- + @echo "/* Changes should be made in Makefile, not to this file! */" >tune.c
- + @echo "" >>tune.c
- + sed -e 's;TMPDIR;$(TMPDIR);' \
- + -e 's;LIBDIR;$(LIBDIR);' \
- + -e 's;SHAREDIR;$(SHAREDIR);' \
- + -e 's;bindir;$(bindir);' \
- + -e 's;SHELL;$(SHELL);' $(srcdir)/tune.template >>tune.c
- +
- + rectune.h : Makefile
- + -rm -f nrectune.h
- + @echo "/* Changes should be made in Makefile, not to this file! */" > nrectune.h
- + @echo "" >> nrectune.h
- + echo \#define TMP_DIR \"$(TMPDIR)\" >> nrectune.h
- + echo \#define REC_DIR \"$(RECDIR)\" >> nrectune.h
- + -cmp -s nrectune.h rectune.h || (rm -f rectune.h; cp nrectune.h rectune.h)
- +
- + iproc.o : iproc-ptys.c iproc-pipes.c iproc.c
- + $(CC) -c $(OUR_CFLAGS) $(srcdir)/iproc.c
- +
- + macvert : macvert.c
- + $(CC) $(OUR_CFLAGS) -o macvert $(srcdir)/macvert.c
- +
- + # install doesn't work for Xenix (no install program)
- +
- + install : $(exec_prefix) $(LIBDIR) $(SHAREDIR) $(MANDIR) \
- + $(TEACH-JOVE) $(CMDS.DOC) $(JOVERC) \
- + $(RECOVER) $(JOVE) $(TEACHJOVE) $(JOVEM) \
- + $(RECOVERM) $(TEACHJOVEM)
- + @echo See the README about changes to /etc/rc or /etc/rc.local
- + @echo so that the system recovers jove files on reboot after a crash
- +
- + $(exec_prefix)::
- + if [ -d $@ ]; then true; else mkdir $@; fi
- +
- + $(LIBDIR)::
- + if [ -d $@ ]; then true; else mkdir $@; fi
- +
- + $(SHAREDIR)::
- + if [ -d $@ ]; then true; else mkdir $@; fi
- +
- + $(MANDIR)::
- + if [ -d $@ ]; then true; else mkdir $@; fi
- +
- + $(TEACH-JOVE) : doc/teach-jove
- + $(INSTALL_PROGRAM) $(srcdir)/doc/teach-jove $(TEACH-JOVE)
- +
- + doc/cmds.doc: doc/cmds.doc.nr doc/jove.4 doc/jove.5
- + nroff doc/cmds.doc.nr doc/jove.4 doc/jove.5 > doc/cmds.doc
- +
- + $(CMDS.DOC): doc/cmds.doc
- + $(INSTALL_DATA) $(srcdir)/doc/cmds.doc $(CMDS.DOC)
- +
- + $(JOVERC) : doc/system.rc
- + $(INSTALL_DATA) $(srcdir)/doc/system.rc $(JOVERC)
- +
- + $(PORTSRV) : portsrv
- + $(INSTALL_PROGRAM) portsrv $(PORTSRV)
- +
- + $(KBD): kbd
- + $(INSTALL_PROGRAM) kbd $(KBD)
- +
- + $(RECOVER): recover
- + $(INSTALL_PROGRAM) recover $(RECOVER)
- +
- + $(JOVE): xjove
- + $(INSTALL_PROGRAM) xjove $(JOVE)
- +
- + $(TEACHJOVE): teachjove
- + $(INSTALL_PROGRAM) teachjove $(TEACHJOVE)
- +
- + $(JOVEM): doc/jove.nr
- + sed -e 's;TMPDIR;$(TMPDIR);' \
- + -e 's;LIBDIR;$(LIBDIR);' \
- + -e 's;SHAREDIR;$(SHAREDIR);' \
- + -e 's;SHELL;$(SHELL);' $(srcdir)/doc/jove.nr >/tmp/jove.nr
- + nroff -mandoc /tmp/jove.nr > $(JOVEM)
- + -rm -f /tmp/jove.nr
- +
- + $(TEACHJOVEM): doc/teachjove.nr
- + sed -e 's;TMPDIR;$(TMPDIR);' \
- + -e 's;LIBDIR;$(LIBDIR);' \
- + -e 's;SHAREDIR;$(SHAREDIR);' \
- + -e 's;SHELL;$(SHELL);' $(srcdir)/doc/teachjove.nr >/tmp/teachjove.nr
- + nroff -mandoc /tmp/teachjove.nr > $(TEACHJOVEM)
- + -rm -f /tmp/teachjove.nr
- +
- + echo :
- + @echo $(C-FILES) $(HEADERS)
- +
- + lint:
- + lint -n $(C_SRC) tune.c keys.c
- + @echo Done
- +
- + tags:
- + ctags -w $(C_SRC) $(HEADERS) iproc-ptys.c
- +
- + ciall:
- + ci $(BACKUPS)
- +
- + coall:
- + co $(BACKUPS)
- +
- + jove.shar:
- + shar $(BACKUPS) > jove.shar
- +
- + tar:
- + @tar cvf - `find . -type f -print | \
- + egrep -v '(,v|\.o|xjove|kbd|portsrv|setmaps|~)$$' | \
- + sort`
- +
- + backup: $(BACKUPS)
- + tar cf backup $(BACKUPS)
- +
- + tape-backup:
- + tar cf /dev/rst8 $(BACKUPS)
- +
- + srcdownload:
- + kermit -s $(SUPPORT) $(MISC) $(HEADERS) $(C_SRC)
- +
- + docdownload:
- + kermit -s $(DOCS1) $(DOCS3)
- + kermit -s doc/cmds.doc.nr -a cmdsdoc.nr
- +
- + touch:
- + touch $(OBJECTS)
- +
- + clean:
- + rm -f a.out core *.o keys.c tune.c xjove portsrv kbd recover setmaps \
- + teachjove macvert nrectune.h rectune.h \#* *~ make.log
- +
- + clobber: clean
- + rm -f *.orig *.rej
- +
- + # This version only works under 4.3BSD
- + depend:
- + @echo '"make depend" only works under 4.3BSD'
- + sed -e '/^# DO NOT DELETE THIS LINE/q' Makefile >Makefile.new
- + for i in ${SOURCES} ; do \
- + cc -M ${OUR_CFLAGS} $$i | \
- + awk ' /[/]usr[/]include/ { next } \
- + { if ($$1 != prev) \
- + { if (rec != "") print rec; rec = $$0; prev = $$1; } \
- + else { if (length(rec $$2) > 78) { print rec; rec = $$0; } \
- + else rec = rec " " $$2 } } \
- + END { print rec } ' >>Makefile.new; \
- + done
- + echo '# DEPENDENCIES MUST END AT END OF FILE' >>Makefile.new
- + echo '# IF YOU PUT STUFF HERE IT WILL GO AWAY' >>Makefile.new
- + echo '# see "make depend" above' >>Makefile.new
- + @echo 'New makefile is in "Makefile.new". Move it to "Makefile".'
- +
- + # DO NOT DELETE THIS LINE -- "make depend" uses it
- + funcdefs.o : funcdefs.c jove.h tune.h sysdep.h buf.h wind.h io.h
- + funcdefs.o : dataobj.h keymaps.h argcount.h util.h vars.h screen.h
- + funcdefs.o : externs.h ctype.h
- + abbrev.o : abbrev.c jove.h tune.h sysdep.h buf.h wind.h io.h
- + abbrev.o : dataobj.h keymaps.h argcount.h util.h vars.h screen.h
- + abbrev.o : externs.h fp.h ctype.h
- + argcount.o : argcount.c jove.h tune.h sysdep.h buf.h wind.h io.h
- + argcount.o : dataobj.h keymaps.h argcount.h util.h vars.h screen.h
- + argcount.o : externs.h ctype.h
- + ask.o : ask.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + ask.o : keymaps.h argcount.h util.h vars.h screen.h externs.h
- + ask.o : termcap.h ctype.h chars.h disp.h fp.h scandir.h
- + buf.o : buf.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + buf.o : keymaps.h argcount.h util.h vars.h screen.h externs.h
- + buf.o : ctype.h disp.h fp.h iproc.h
- + c.o : c.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + c.o : keymaps.h argcount.h util.h vars.h screen.h externs.h re.h
- + c.o : ctype.h disp.h
- + case.o : case.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + case.o : keymaps.h argcount.h util.h vars.h screen.h externs.h
- + case.o : disp.h ctype.h
- + ctype.o : ctype.c jove.h tune.h sysdep.h buf.h wind.h io.h
- + ctype.o : dataobj.h keymaps.h argcount.h util.h vars.h screen.h
- + ctype.o : externs.h ctype.h
- + delete.o : delete.c jove.h tune.h sysdep.h buf.h wind.h io.h
- + delete.o : dataobj.h keymaps.h argcount.h util.h vars.h screen.h
- + delete.o : externs.h disp.h
- + disp.o : disp.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + disp.o : keymaps.h argcount.h util.h vars.h screen.h externs.h
- + disp.o : ctype.h termcap.h chars.h fp.h disp.h iproc.h
- + extend.o : extend.c jove.h tune.h sysdep.h buf.h wind.h io.h
- + extend.o : dataobj.h keymaps.h argcount.h util.h vars.h screen.h
- + extend.o : externs.h fp.h termcap.h ctype.h chars.h disp.h re.h
- + fp.o : fp.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + fp.o : keymaps.h argcount.h util.h vars.h screen.h externs.h fp.h
- + fp.o : ctype.h termcap.h disp.h
- + fmt.o : fmt.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + fmt.o : keymaps.h argcount.h util.h vars.h screen.h externs.h fp.h
- + fmt.o : termcap.h ctype.h disp.h
- + insert.o : insert.c jove.h tune.h sysdep.h buf.h wind.h io.h
- + insert.o : dataobj.h keymaps.h argcount.h util.h vars.h screen.h
- + insert.o : externs.h ctype.h list.h chars.h disp.h re.h
- + io.o : io.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + io.o : keymaps.h argcount.h util.h vars.h screen.h externs.h
- + io.o : list.h fp.h termcap.h ctype.h disp.h scandir.h temp.h
- + iproc.o : iproc.c jove.h tune.h sysdep.h buf.h wind.h io.h
- + iproc.o : dataobj.h keymaps.h argcount.h util.h vars.h screen.h
- + iproc.o : externs.h re.h ctype.h disp.h fp.h iproc.h iproc-ptys.c
- + iproc.o : wait.h ttystate.h
- + jove.o : jove.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + jove.o : keymaps.h argcount.h util.h vars.h screen.h externs.h
- + jove.o : fp.h termcap.h ctype.h chars.h disp.h re.h rec.h
- + jove.o : iproc.h ttystate.h
- + list.o : list.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + list.o : keymaps.h argcount.h util.h vars.h screen.h externs.h
- + list.o : list.h
- + loadavg.o : loadavg.c jove.h tune.h sysdep.h buf.h wind.h io.h
- + loadavg.o : dataobj.h keymaps.h argcount.h util.h vars.h screen.h
- + loadavg.o : externs.h
- + macros.o : macros.c jove.h tune.h sysdep.h buf.h wind.h io.h
- + macros.o : dataobj.h keymaps.h argcount.h util.h vars.h screen.h
- + macros.o : externs.h ctype.h fp.h chars.h disp.h
- + marks.o : marks.c jove.h tune.h sysdep.h buf.h wind.h io.h
- + marks.o : dataobj.h keymaps.h argcount.h util.h vars.h screen.h
- + marks.o : externs.h
- + misc.o : misc.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + misc.o : keymaps.h argcount.h util.h vars.h screen.h externs.h
- + misc.o : ctype.h disp.h
- + move.o : move.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + move.o : keymaps.h argcount.h util.h vars.h screen.h externs.h
- + move.o : re.h ctype.h disp.h
- + paragraph.o : paragraph.c jove.h tune.h sysdep.h buf.h wind.h io.h
- + paragraph.o : dataobj.h keymaps.h argcount.h util.h vars.h screen.h
- + paragraph.o : externs.h disp.h
- + proc.o : proc.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + proc.o : keymaps.h argcount.h util.h vars.h screen.h externs.h
- + proc.o : ctype.h fp.h re.h termcap.h disp.h rec.h wait.h
- + re.o : re.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + re.o : keymaps.h argcount.h util.h vars.h screen.h externs.h re.h
- + re.o : ctype.h
- + re1.o : re1.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + re1.o : keymaps.h argcount.h util.h vars.h screen.h externs.h fp.h
- + re1.o : re.h ctype.h chars.h disp.h
- + rec.o : rec.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + rec.o : keymaps.h argcount.h util.h vars.h screen.h externs.h fp.h
- + rec.o : rec.h
- + scandir.o : scandir.c jove.h tune.h sysdep.h buf.h wind.h io.h
- + scandir.o : dataobj.h keymaps.h argcount.h util.h vars.h screen.h
- + scandir.o : externs.h scandir.h
- + screen.o : screen.c jove.h tune.h sysdep.h buf.h wind.h io.h
- + screen.o : dataobj.h keymaps.h argcount.h util.h vars.h screen.h
- + screen.o : externs.h fp.h ctype.h termcap.h disp.h
- + term.o : term.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + term.o : keymaps.h argcount.h util.h vars.h screen.h externs.h
- + term.o : fp.h disp.h ctype.h termcap.h
- + util.o : util.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + util.o : keymaps.h argcount.h util.h vars.h screen.h externs.h
- + util.o : ctype.h termcap.h disp.h fp.h
- + vars.o : vars.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + vars.o : keymaps.h argcount.h util.h vars.h screen.h externs.h
- + version.o : version.c jove.h tune.h sysdep.h buf.h wind.h io.h
- + version.o : dataobj.h keymaps.h argcount.h util.h vars.h screen.h
- + version.o : externs.h
- + wind.o : wind.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + wind.o : keymaps.h argcount.h util.h vars.h screen.h externs.h
- + wind.o : termcap.h chars.h disp.h
- + getch.o : getch.c tune.h sysdep.h
- + mac.o : mac.c tune.h sysdep.h
- + keymaps.o : keymaps.c jove.h tune.h sysdep.h buf.h wind.h io.h
- + keymaps.o : dataobj.h keymaps.h argcount.h util.h vars.h screen.h
- + keymaps.o : externs.h list.h fp.h termcap.h chars.h disp.h re.h
- + pcscr.o : pcscr.c jove.h tune.h sysdep.h buf.h wind.h io.h
- + pcscr.o : dataobj.h keymaps.h argcount.h util.h vars.h screen.h
- + pcscr.o : externs.h
- + portsrv.o : portsrv.c jove.h tune.h sysdep.h buf.h wind.h io.h
- + portsrv.o : dataobj.h keymaps.h argcount.h util.h vars.h screen.h
- + portsrv.o : externs.h
- + recover.o : recover.c jove.h tune.h sysdep.h buf.h wind.h io.h
- + recover.o : dataobj.h keymaps.h argcount.h util.h vars.h screen.h
- + recover.o : externs.h temp.h rec.h ctype.h scandir.c scandir.h
- + setmaps.o : setmaps.c funcdefs.c jove.h tune.h sysdep.h buf.h wind.h
- + setmaps.o : io.h dataobj.h keymaps.h argcount.h util.h vars.h
- + setmaps.o : screen.h externs.h ctype.h
- + teachjove.o : teachjove.c
- + kbd.o : kbd.c jove.h tune.h sysdep.h buf.h wind.h io.h dataobj.h
- + kbd.o : keymaps.h argcount.h util.h vars.h screen.h externs.h
- + # DEPENDENCIES MUST END AT END OF FILE
- + # IF YOU PUT STUFF HERE IT WILL GO AWAY
- + # see "make depend" above
- diff -rc --new-file jove-4.14.6/README.amiga /gnu/src/amiga/jove-4.14.6/README.amiga
- *** jove-4.14.6/README.amiga Thu Jan 1 00:00:00 1970
- --- /gnu/src/amiga/jove-4.14.6/README.amiga Thu Jan 12 20:36:23 1995
- ***************
- *** 0 ****
- --- 1,6 ----
- + This is a very crude "compile and go" port of Jove.
- + I'll leave it to an interested party to clean it up
- + and make it more "Amiga friendly".
- +
- + -Fred ><>
- + 11-Jan-95
- diff -rc --new-file jove-4.14.6/configure /gnu/src/amiga/jove-4.14.6/configure
- *** jove-4.14.6/configure Thu Jan 1 00:00:00 1970
- --- /gnu/src/amiga/jove-4.14.6/configure Thu Jan 12 21:01:09 1995
- ***************
- *** 0 ****
- --- 1,855 ----
- + #!/bin/sh
- +
- + # Guess values for system-dependent variables and create Makefiles.
- + # Generated automatically using autoconf version 2.1
- + # Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc.
- + #
- + # This configure script is free software; the Free Software Foundation
- + # gives unlimited permission to copy, distribute and modify it.
- +
- + # Defaults:
- + ac_help=
- + ac_default_prefix=/gnu
- + # Any additions from configure.in:
- +
- + # Initialize some variables set by options.
- + # The variables have the same names as the options, with
- + # dashes changed to underlines.
- + build=NONE
- + cache_file=./config.cache
- + exec_prefix=NONE
- + host=NONE
- + no_create=
- + nonopt=NONE
- + no_recursion=
- + prefix=NONE
- + program_prefix=NONE
- + program_suffix=NONE
- + program_transform_name=s,x,x,
- + silent=
- + site=
- + srcdir=
- + target=NONE
- + verbose=
- + x_includes=NONE
- + x_libraries=NONE
- +
- + # Initialize some other variables.
- + subdirs=
- +
- + ac_prev=
- + for ac_option
- + do
- +
- + # If the previous option needs an argument, assign it.
- + if test -n "$ac_prev"; then
- + eval "$ac_prev=\$ac_option"
- + ac_prev=
- + continue
- + fi
- +
- + case "$ac_option" in
- + -*=*) ac_optarg=`/bin/echo "$ac_option" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
- + *) ac_optarg= ;;
- + esac
- +
- + # Accept the important Cygnus configure options, so we can diagnose typos.
- +
- + case "$ac_option" in
- +
- + -build | --build | --buil | --bui | --bu | --b)
- + ac_prev=build ;;
- + -build=* | --build=* | --buil=* | --bui=* | --bu=* | --b=*)
- + build="$ac_optarg" ;;
- +
- + -cache-file | --cache-file | --cache-fil | --cache-fi \
- + | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c)
- + ac_prev=cache_file ;;
- + -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \
- + | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*)
- + cache_file="$ac_optarg" ;;
- +
- + -disable-* | --disable-*)
- + ac_feature=`/bin/echo $ac_option|sed -e 's/-*disable-//'`
- + # Reject names that are not valid shell variable names.
- + if test -n "`/bin/echo $ac_feature| sed 's/[-a-zA-Z0-9_]//g'`"; then
- + { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
- + fi
- + ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
- + eval "enable_${ac_feature}=no" ;;
- +
- + -enable-* | --enable-*)
- + ac_feature=`/bin/echo $ac_option|sed -e 's/-*enable-//' -e 's/=.*//'`
- + # Reject names that are not valid shell variable names.
- + if test -n "`/bin/echo $ac_feature| sed 's/[-_a-zA-Z0-9]//g'`"; then
- + { echo "configure: error: $ac_feature: invalid feature name" 1>&2; exit 1; }
- + fi
- + ac_feature=`/bin/echo $ac_feature| sed 's/-/_/g'`
- + case "$ac_option" in
- + *=*) ;;
- + *) ac_optarg=yes ;;
- + esac
- + eval "enable_${ac_feature}='$ac_optarg'" ;;
- +
- + -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \
- + | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \
- + | --exec | --exe | --ex)
- + ac_prev=exec_prefix ;;
- + -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \
- + | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \
- + | --exec=* | --exe=* | --ex=*)
- + exec_prefix="$ac_optarg" ;;
- +
- + -gas | --gas | --ga | --g)
- + # Obsolete; use --with-gas.
- + with_gas=yes ;;
- +
- + -help | --help | --hel | --he)
- + # Omit some internal or obsolete options to make the list less imposing.
- + # This message is too long to be a string in the A/UX 3.1 sh.
- + cat << EOF
- + Usage: configure [options] [host]
- + Options: [defaults in brackets after descriptions]
- + Configuration:
- + --cache-file=FILE cache test results in FILE
- + --help print this message
- + --no-create do not create output files
- + --quiet, --silent do not print \`checking...' messages
- + --version print the version of autoconf that created configure
- + Directory and file names:
- + --prefix=PREFIX install architecture-independent files in PREFIX
- + [$ac_default_prefix]
- + --exec-prefix=PREFIX install architecture-dependent files in PREFIX
- + [same as prefix]
- + --srcdir=DIR find the sources in DIR [configure dir or ..]
- + --program-prefix=PREFIX prepend PREFIX to installed program names
- + --program-suffix=SUFFIX append SUFFIX to installed program names
- + --program-transform-name=PROGRAM run sed PROGRAM on installed program names
- + Host type:
- + --build=BUILD configure for building on BUILD [BUILD=HOST]
- + --host=HOST configure for HOST [guessed]
- + --target=TARGET configure for TARGET [TARGET=HOST]
- + Features and packages:
- + --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
- + --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
- + --with-PACKAGE[=ARG] use PACKAGE [ARG=yes]
- + --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no)
- + --x-includes=DIR X include files are in DIR
- + --x-libraries=DIR X library files are in DIR
- + --enable and --with options recognized:$ac_help
- + EOF
- + exit 0 ;;
- +
- + -host | --host | --hos | --ho)
- + ac_prev=host ;;
- + -host=* | --host=* | --hos=* | --ho=*)
- + host="$ac_optarg" ;;
- +
- + -nfp | --nfp | --nf)
- + # Obsolete; use --without-fp.
- + with_fp=no ;;
- +
- + -no-create | --no-create | --no-creat | --no-crea | --no-cre \
- + | --no-cr | --no-c)
- + no_create=yes ;;
- +
- + -no-recursion | --no-recursion | --no-recursio | --no-recursi \
- + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
- + no_recursion=yes ;;
- +
- + -prefix | --prefix | --prefi | --pref | --pre | --pr | --p)
- + ac_prev=prefix ;;
- + -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*)
- + prefix="$ac_optarg" ;;
- +
- + -program-prefix | --program-prefix | --program-prefi | --program-pref \
- + | --program-pre | --program-pr | --program-p)
- + ac_prev=program_prefix ;;
- + -program-prefix=* | --program-prefix=* | --program-prefi=* \
- + | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*)
- + program_prefix="$ac_optarg" ;;
- +
- + -program-suffix | --program-suffix | --program-suffi | --program-suff \
- + | --program-suf | --program-su | --program-s)
- + ac_prev=program_suffix ;;
- + -program-suffix=* | --program-suffix=* | --program-suffi=* \
- + | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*)
- + program_suffix="$ac_optarg" ;;
- +
- + -program-transform-name | --program-transform-name \
- + | --program-transform-nam | --program-transform-na \
- + | --program-transform-n | --program-transform- \
- + | --program-transform | --program-transfor \
- + | --program-transfo | --program-transf \
- + | --program-trans | --program-tran \
- + | --progr-tra | --program-tr | --program-t)
- + ac_prev=program_transform_name ;;
- + -program-transform-name=* | --program-transform-name=* \
- + | --program-transform-nam=* | --program-transform-na=* \
- + | --program-transform-n=* | --program-transform-=* \
- + | --program-transform=* | --program-transfor=* \
- + | --program-transfo=* | --program-transf=* \
- + | --program-trans=* | --program-tran=* \
- + | --progr-tra=* | --program-tr=* | --program-t=*)
- + program_transform_name="$ac_optarg" ;;
- +
- + -q | -quiet | --quiet | --quie | --qui | --qu | --q \
- + | -silent | --silent | --silen | --sile | --sil)
- + silent=yes ;;
- +
- + -site | --site | --sit)
- + ac_prev=site ;;
- + -site=* | --site=* | --sit=*)
- + site="$ac_optarg" ;;
- +
- + -srcdir | --srcdir | --srcdi | --srcd | --src | --sr)
- + ac_prev=srcdir ;;
- + -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*)
- + srcdir="$ac_optarg" ;;
- +
- + -target | --target | --targe | --targ | --tar | --ta | --t)
- + ac_prev=target ;;
- + -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*)
- + target="$ac_optarg" ;;
- +
- + -v | -verbose | --verbose | --verbos | --verbo | --verb)
- + verbose=yes ;;
- +
- + -version | --version | --versio | --versi | --vers)
- + echo "configure generated by autoconf version 2.1"
- + exit 0 ;;
- +
- + -with-* | --with-*)
- + ac_package=`/bin/echo $ac_option|sed -e 's/-*with-//' -e 's/=.*//'`
- + # Reject names that are not valid shell variable names.
- + if test -n "`/bin/echo $ac_package| sed 's/[-_a-zA-Z0-9]//g'`"; then
- + { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
- + fi
- + ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
- + case "$ac_option" in
- + *=*) ;;
- + *) ac_optarg=yes ;;
- + esac
- + eval "with_${ac_package}='$ac_optarg'" ;;
- +
- + -without-* | --without-*)
- + ac_package=`/bin/echo $ac_option|sed -e 's/-*without-//'`
- + # Reject names that are not valid shell variable names.
- + if test -n "`/bin/echo $ac_package| sed 's/[-a-zA-Z0-9_]//g'`"; then
- + { echo "configure: error: $ac_package: invalid package name" 1>&2; exit 1; }
- + fi
- + ac_package=`/bin/echo $ac_package| sed 's/-/_/g'`
- + eval "with_${ac_package}=no" ;;
- +
- + --x)
- + # Obsolete; use --with-x.
- + with_x=yes ;;
- +
- + -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \
- + | --x-incl | --x-inc | --x-in | --x-i)
- + ac_prev=x_includes ;;
- + -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \
- + | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*)
- + x_includes="$ac_optarg" ;;
- +
- + -x-libraries | --x-libraries | --x-librarie | --x-librari \
- + | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l)
- + ac_prev=x_libraries ;;
- + -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \
- + | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*)
- + x_libraries="$ac_optarg" ;;
- +
- + -*) { echo "configure: error: $ac_option: invalid option; use --help to show usage" 1>&2; exit 1; }
- + ;;
- +
- + *)
- + if test -n "`/bin/echo $ac_option| sed 's/[-a-z0-9.]//g'`"; then
- + echo "configure: warning: $ac_option: invalid host type" 1>&2
- + fi
- + if test "x$nonopt" != xNONE; then
- + { echo "configure: error: can only configure for one host and one target at a time" 1>&2; exit 1; }
- + fi
- + nonopt="$ac_option"
- + ;;
- +
- + esac
- + done
- +
- + if test -n "$ac_prev"; then
- + { echo "configure: error: missing argument to --`/bin/echo $ac_prev | sed 's/_/-/g'`" 1>&2; exit 1; }
- + fi
- +
- + trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
- +
- + # File descriptor usage:
- + # 0 unused; standard input
- + # 1 file creation
- + # 2 errors and warnings
- + # 3 unused; some systems may open it to /dev/tty
- + # 4 checking for... messages and results
- + # 5 compiler messages saved in config.log
- + if test "$silent" = yes; then
- + exec 4>/dev/null
- + else
- + exec 4>&1
- + fi
- + exec 5>./config.log
- +
- + echo "\
- + This file contains any messages produced by compilers while
- + running configure, to aid debugging if configure makes a mistake.
- + " 1>&5
- +
- + # Strip out --no-create and --no-recursion so they do not pile up.
- + # Also quote any args containing shell metacharacters.
- + ac_configure_args=
- + for ac_arg
- + do
- + case "$ac_arg" in
- + -no-create | --no-create | --no-creat | --no-crea | --no-cre \
- + | --no-cr | --no-c) ;;
- + -no-recursion | --no-recursion | --no-recursio | --no-recursi \
- + | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) ;;
- + *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?]*)
- + ac_configure_args="$ac_configure_args '$ac_arg'" ;;
- + *) ac_configure_args="$ac_configure_args $ac_arg" ;;
- + esac
- + done
- +
- + # NLS nuisances.
- + # Only set LANG and LC_ALL to C if already set.
- + # These must not be set unconditionally because not all systems understand
- + # e.g. LANG=C (notably SCO).
- + if test "${LC_ALL+set}" = set; then LC_ALL=C; export LC_ALL; fi
- + if test "${LANG+set}" = set; then LANG=C; export LANG; fi
- +
- + # confdefs.h avoids OS command line length limits that DEFS can exceed.
- + rm -rf conftest* confdefs.h
- + # AIX cpp loses on an empty file, so make sure it contains at least a newline.
- + /bin/echo > confdefs.h
- +
- + # A filename unique to this package, relative to the directory that
- + # configure is in, which we can look for to find out if srcdir is correct.
- + ac_unique_file=jove.h
- +
- + # Find the source files, if location was not specified.
- + if test -z "$srcdir"; then
- + ac_srcdir_defaulted=yes
- + # Try the directory containing this script, then its parent.
- + ac_prog=$0
- + ac_confdir=`/bin/echo $ac_prog|sed 's%/[^/][^/]*$%%'`
- + test "x$ac_confdir" = "x$ac_prog" && ac_confdir=.
- + srcdir=$ac_confdir
- + if test ! -r $srcdir/$ac_unique_file; then
- + srcdir=..
- + fi
- + else
- + ac_srcdir_defaulted=no
- + fi
- + if test ! -r $srcdir/$ac_unique_file; then
- + if test "$ac_srcdir_defaulted" = yes; then
- + { echo "configure: error: can not find sources in $ac_confdir or .." 1>&2; exit 1; }
- + else
- + { echo "configure: error: can not find sources in $srcdir" 1>&2; exit 1; }
- + fi
- + fi
- + srcdir=`/bin/echo "${srcdir}" | sed 's%\([^/]\)/*$%\1%'`
- +
- + # Prefer explicitly selected file to automatically selected ones.
- + if test -z "$CONFIG_SITE"; then
- + if test "x$prefix" != xNONE; then
- + CONFIG_SITE="$prefix/share/config.site $prefix/etc/config.site"
- + else
- + CONFIG_SITE="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site"
- + fi
- + fi
- + for ac_site_file in $CONFIG_SITE; do
- + if test -r "$ac_site_file"; then
- + echo "loading site script $ac_site_file"
- + . "$ac_site_file"
- + fi
- + done
- +
- + if test -r "$cache_file"; then
- + echo "loading cache $cache_file"
- + . $cache_file
- + else
- + echo "creating cache $cache_file"
- + > $cache_file
- + fi
- +
- + ac_ext=c
- + # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
- + ac_cpp='$CPP $CPPFLAGS'
- + ac_compile='${CC-cc} $CFLAGS $CPPFLAGS conftest.$ac_ext -c 1>&5 2>&5'
- + ac_link='${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext -o conftest $LIBS 1>&5 2>&5'
- +
- + if (echo "testing\c"; echo 1,2,3) | grep c >/dev/null; then
- + # Stardent Vistra SVR4 grep lacks -e, says ghazi@caip.rutgers.edu.
- + if (echo -n testing; echo 1,2,3) | sed s/-n/xn/ | grep xn >/dev/null; then
- + ac_n= ac_c='
- + ' ac_t=' '
- + else
- + ac_n=-n ac_c= ac_t=
- + fi
- + else
- + ac_n= ac_c='\c' ac_t=
- + fi
- +
- +
- +
- + # Extract the first word of "gcc", so it can be a program name with args.
- + set dummy gcc; ac_word=$2
- + /bin/echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
- + if eval "test \"`echo '${'ac_cv_prog_CC'+set}'`\" = set"; then
- + /bin/echo $ac_n "(cached) $ac_c" 1>&4
- + else
- + if test -n "$CC"; then
- + ac_cv_prog_CC="$CC" # Let the user override the test.
- + else
- + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
- + for ac_dir in $PATH; do
- + test -z "$ac_dir" && ac_dir=.
- + if test -f $ac_dir/$ac_word; then
- + ac_cv_prog_CC="gcc"
- + break
- + fi
- + done
- + IFS="$ac_save_ifs"
- + test -z "$ac_cv_prog_CC" && ac_cv_prog_CC="cc"
- + fi
- + fi
- + CC="$ac_cv_prog_CC"
- + if test -n "$CC"; then
- + /bin/echo "$ac_t""$CC" 1>&4
- + else
- + /bin/echo "$ac_t""no" 1>&4
- + fi
- +
- +
- + /bin/echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&4
- + if eval "test \"`echo '${'ac_cv_prog_gcc'+set}'`\" = set"; then
- + /bin/echo $ac_n "(cached) $ac_c" 1>&4
- + else
- + cat > conftest.c <<EOF
- + #ifdef __GNUC__
- + yes;
- + #endif
- + EOF
- + if ${CC-cc} -E conftest.c 2>&5 | egrep yes >/dev/null 2>&1; then
- + ac_cv_prog_gcc=yes
- + else
- + ac_cv_prog_gcc=no
- + fi
- + fi
- + /bin/echo "$ac_t""$ac_cv_prog_gcc" 1>&4
- + if test $ac_cv_prog_gcc = yes; then
- + GCC=yes
- + if test "${CFLAGS+set}" != set; then
- + /bin/echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&4
- + if eval "test \"`echo '${'ac_cv_prog_gcc_g'+set}'`\" = set"; then
- + /bin/echo $ac_n "(cached) $ac_c" 1>&4
- + else
- + echo 'void f(){}' > conftest.c
- + if test -z "`${CC-cc} -g -c conftest.c 2>&1`"; then
- + ac_cv_prog_gcc_g=yes
- + else
- + ac_cv_prog_gcc_g=no
- + fi
- + rm -f conftest*
- +
- + fi
- + /bin/echo "$ac_t""$ac_cv_prog_gcc_g" 1>&4
- + if test $ac_cv_prog_gcc_g = yes; then
- + # Amiga hack - suppress automatically using -g for now
- + # Also default to using -O2
- + CFLAGS="-O2"
- + else
- + CFLAGS="-O2"
- + fi
- + fi
- + else
- + GCC=
- + test "${CFLAGS+set}" = set || CFLAGS="-g"
- + fi
- +
- + /bin/echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&4
- + # On Suns, sometimes $CPP names a directory.
- + if test -n "$CPP" && test -d "$CPP"; then
- + CPP=
- + fi
- + if test -z "$CPP"; then
- + if eval "test \"`echo '${'ac_cv_prog_CPP'+set}'`\" = set"; then
- + /bin/echo $ac_n "(cached) $ac_c" 1>&4
- + else
- + # This must be in double quotes, not single quotes, because CPP may get
- + # substituted into the Makefile and "${CC-cc}" will confuse make.
- + CPP="${CC-cc} -E"
- + # On the NeXT, cc -E runs the code through the compiler's parser,
- + # not just through cpp.
- + cat > conftest.$ac_ext <<EOF
- + #line 492 "configure"
- + #include "confdefs.h"
- + #include <assert.h>
- + Syntax Error
- + EOF
- + eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
- + ac_err=`grep -v '^ *+' conftest.out`
- + if test -z "$ac_err"; then
- + :
- + else
- + /bin/echo "$ac_err" >&5
- + rm -rf conftest*
- + CPP="${CC-cc} -E -traditional-cpp"
- + cat > conftest.$ac_ext <<EOF
- + #line 506 "configure"
- + #include "confdefs.h"
- + #include <assert.h>
- + Syntax Error
- + EOF
- + eval "$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
- + ac_err=`grep -v '^ *+' conftest.out`
- + if test -z "$ac_err"; then
- + :
- + else
- + /bin/echo "$ac_err" >&5
- + rm -rf conftest*
- + CPP=/lib/cpp
- + fi
- + rm -f conftest*
- + fi
- + rm -f conftest*
- + ac_cv_prog_CPP="$CPP"
- + fi
- + fi
- + CPP="$ac_cv_prog_CPP"
- + /bin/echo "$ac_t""$CPP" 1>&4
- +
- + if test $ac_cv_prog_gcc = yes; then
- + /bin/echo $ac_n "checking whether ${CC-cc} needs -traditional""... $ac_c" 1>&4
- + if eval "test \"`echo '${'ac_cv_prog_gcc_traditional'+set}'`\" = set"; then
- + /bin/echo $ac_n "(cached) $ac_c" 1>&4
- + else
- + ac_pattern="Autoconf.*'x'"
- + cat > conftest.$ac_ext <<EOF
- + #line 536 "configure"
- + #include "confdefs.h"
- + #include <sgtty.h>
- + Autoconf TIOCGETP
- + EOF
- + if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- + egrep "$ac_pattern" >/dev/null 2>&1; then
- + rm -rf conftest*
- + ac_cv_prog_gcc_traditional=yes
- + else
- + rm -rf conftest*
- + ac_cv_prog_gcc_traditional=no
- + fi
- + rm -f conftest*
- +
- +
- + if test $ac_cv_prog_gcc_traditional = no; then
- + cat > conftest.$ac_ext <<EOF
- + #line 554 "configure"
- + #include "confdefs.h"
- + #include <termio.h>
- + Autoconf TCGETA
- + EOF
- + if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- + egrep "$ac_pattern" >/dev/null 2>&1; then
- + rm -rf conftest*
- + ac_cv_prog_gcc_traditional=yes
- + fi
- + rm -f conftest*
- +
- + fi
- + fi
- + /bin/echo "$ac_t""$ac_cv_prog_gcc_traditional" 1>&4
- + if test $ac_cv_prog_gcc_traditional = yes; then
- + CC="$CC -traditional"
- + fi
- + fi
- +
- + ac_aux_dir=
- + for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do
- + if test -f $ac_dir/install-sh; then
- + ac_aux_dir=$ac_dir
- + ac_install_sh="$ac_aux_dir/install-sh -c"
- + break
- + elif test -f $ac_dir/install.sh; then
- + ac_aux_dir=$ac_dir
- + ac_install_sh="$ac_aux_dir/install.sh -c"
- + break
- + fi
- + done
- + if test -z "$ac_aux_dir"; then
- + { echo "configure: error: can not find install-sh or install.sh in $srcdir $srcdir/.. $srcdir/../.." 1>&2; exit 1; }
- + fi
- + ac_config_guess=$ac_aux_dir/config.guess
- + ac_config_sub=$ac_aux_dir/config.sub
- + ac_configure=$ac_aux_dir/configure # This should be Cygnus configure.
- +
- + # Find a good install program. We prefer a C program (faster),
- + # so one script is as good as another. But avoid the broken or
- + # incompatible versions:
- + # SysV /etc/install, /usr/sbin/install
- + # SunOS /usr/etc/install
- + # IRIX /sbin/install
- + # AIX /bin/install
- + # AFS /usr/afsws/bin/install, which mishandles nonexistent args
- + # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
- + # ./install, which can be erroneously created by make from ./install.sh.
- + /bin/echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&4
- + if test -z "$INSTALL"; then
- + if eval "test \"`echo '${'ac_cv_path_install'+set}'`\" = set"; then
- + /bin/echo $ac_n "(cached) $ac_c" 1>&4
- + else
- + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
- + for ac_dir in $PATH; do
- + case "$ac_dir" in
- + ''|.|/gnu/etc) ;;
- + *)
- + # OSF1 and SCO ODT 3.0 have their own names for install.
- + for ac_prog in ginstall installbsd scoinst install; do
- + if test -f $ac_dir/$ac_prog; then
- + if test $ac_prog = install &&
- + grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
- + # AIX install. It has an incompatible calling convention.
- + # OSF/1 installbsd also uses dspmsg, but is usable.
- + :
- + else
- + ac_cv_path_install="$ac_dir/$ac_prog -c"
- + break 2
- + fi
- + fi
- + done
- + ;;
- + esac
- + done
- + IFS="$ac_save_ifs"
- + # As a last resort, use the slow shell script.
- + test -z "$ac_cv_path_install" && ac_cv_path_install="$ac_install_sh"
- + fi
- + INSTALL="$ac_cv_path_install"
- + fi
- + /bin/echo "$ac_t""$INSTALL" 1>&4
- +
- + # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
- + # It thinks the first close brace ends the variable substitution.
- + test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
- +
- + test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
- +
- + # Extract the first word of "ranlib", so it can be a program name with args.
- + set dummy ranlib; ac_word=$2
- + /bin/echo $ac_n "checking for $ac_word""... $ac_c" 1>&4
- + if eval "test \"`echo '${'ac_cv_prog_RANLIB'+set}'`\" = set"; then
- + /bin/echo $ac_n "(cached) $ac_c" 1>&4
- + else
- + if test -n "$RANLIB"; then
- + ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test.
- + else
- + IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
- + for ac_dir in $PATH; do
- + test -z "$ac_dir" && ac_dir=.
- + if test -f $ac_dir/$ac_word; then
- + ac_cv_prog_RANLIB="ranlib"
- + break
- + fi
- + done
- + IFS="$ac_save_ifs"
- + test -z "$ac_cv_prog_RANLIB" && ac_cv_prog_RANLIB=":"
- + fi
- + fi
- + RANLIB="$ac_cv_prog_RANLIB"
- + if test -n "$RANLIB"; then
- + /bin/echo "$ac_t""$RANLIB" 1>&4
- + else
- + /bin/echo "$ac_t""no" 1>&4
- + fi
- +
- +
- + trap '' 1 2 15
- + if test -w $cache_file; then
- + echo "updating cache $cache_file"
- + cat > $cache_file <<\EOF
- + # This file is a shell script that caches the results of configure
- + # tests run on this system so they can be shared between configure
- + # scripts and configure runs. It is not useful on other systems.
- + # If it contains results you don't want to keep, you may remove or edit it.
- + #
- + # By default, configure uses ./config.cache as the cache file,
- + # creating it if it does not exist already. You can give configure
- + # the --cache-file=FILE option to use a different cache file; that is
- + # what configure does when it calls configure scripts in
- + # subdirectories, so they share the cache.
- + # Giving --cache-file=/dev/null disables caching, for debugging configure.
- + # config.status only pays attention to the cache file if you give it the
- + # --recheck option to rerun configure.
- + #
- + EOF
- + # Ultrix sh set writes to stderr and can't be redirected directly.
- + (set) 2>&1 |
- + sed -n "s/^\([a-zA-Z0-9_]*_cv_[a-zA-Z0-9_]*\)=\(.*\)/: \${\1='\2'}/p" \
- + >> $cache_file
- + else
- + echo "not updating unwritable cache $cache_file"
- + fi
- +
- + trap 'rm -fr conftest* confdefs* core $ac_clean_files; exit 1' 1 2 15
- +
- + test "x$prefix" = xNONE && prefix=$ac_default_prefix
- + # Let make expand exec_prefix.
- + test "x$exec_prefix" = xNONE && exec_prefix='${prefix}'
- +
- + # Any assignment to VPATH causes Sun make to only execute
- + # the first set of double-colon rules, so remove it if not needed.
- + # If there is a colon in the path, we need to keep it.
- + if test "x$srcdir" = x.; then
- + ac_vpsub='/^[ ]*VPATH[ ]*=[^:]*$/d'
- + fi
- +
- + trap 'rm -f $CONFIG_STATUS conftest*; exit 1' 1 2 15
- +
- + # Transform confdefs.h into DEFS.
- + # Protect against shell expansion while executing Makefile rules.
- + # Protect against Makefile macro expansion.
- + cat > conftest.defs <<\EOF
- + s%#define \([A-Za-z_][A-Za-z0-9_]*\) \(.*\)%-D\1=\2%g
- + s%[ `~#$^&*(){}\\|;'"<>?]%\\&%g
- + s%\[%\\&%g
- + s%\]%\\&%g
- + s%\$%$$%g
- + EOF
- + DEFS=`sed -f conftest.defs confdefs.h | tr '\012' ' '`
- + rm -f conftest.defs
- +
- +
- + # Without the "./", some shells look in PATH for config.status.
- + : ${CONFIG_STATUS=./config.status}
- +
- + echo creating $CONFIG_STATUS
- + # Some systems, like AmigaDOS, won't allow you to remove a script that is
- + # being executed, so just move it out of the way instead.
- + if test -f $CONFIG_STATUS; then mv $CONFIG_STATUS $CONFIG_STATUS.old; else true; fi
- + cat > $CONFIG_STATUS <<EOF
- + #!/bin/sh
- + # Generated automatically by configure.
- + # Run this file to recreate the current configuration.
- + # This directory was configured as follows,
- + # on host `(hostname || uname -n) 2>/dev/null | sed 1q`:
- + #
- + # $0 $ac_configure_args
- + #
- + # Compiler output produced by configure, useful for debugging
- + # configure, is in ./config.log if it exists.
- +
- + ac_cs_usage="Usage: $CONFIG_STATUS [--recheck] [--version] [--help]"
- + for ac_option
- + do
- + case "\$ac_option" in
- + -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
- + echo "running \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion"
- + exec \${CONFIG_SHELL-/bin/sh} $0 $ac_configure_args --no-create --no-recursion ;;
- + -version | --version | --versio | --versi | --vers | --ver | --ve | --v)
- + /bin/echo "$CONFIG_STATUS generated by autoconf version 2.1"
- + exit 0 ;;
- + -help | --help | --hel | --he | --h)
- + echo "\$ac_cs_usage"; exit 0 ;;
- + *) echo "\$ac_cs_usage"; exit 1 ;;
- + esac
- + done
- +
- + ac_given_srcdir=$srcdir
- + ac_given_INSTALL="$INSTALL"
- +
- + trap 'rm -f Makefile; exit 1' 1 2 15
- +
- + # Protect against being on the right side of a sed subst in config.status.
- + sed 's/%@/@@/; s/@%/@@/; s/%g$/@g/; /@g$/s/[\\\\&%]/\\\\&/g;
- + s/@@/%@/; s/@@/@%/; s/@g$/%g/' > conftest.subs <<\CEOF
- + $ac_vpsub
- + $extrasub
- + s%@CFLAGS@%$CFLAGS%g
- + s%@CPPFLAGS@%$CPPFLAGS%g
- + s%@CXXFLAGS@%$CXXFLAGS%g
- + s%@DEFS@%$DEFS%g
- + s%@LDFLAGS@%$LDFLAGS%g
- + s%@LIBS@%$LIBS%g
- + s%@exec_prefix@%$exec_prefix%g
- + s%@prefix@%$prefix%g
- + s%@program_transform_name@%$program_transform_name%g
- + s%@CC@%$CC%g
- + s%@CPP@%$CPP%g
- + s%@INSTALL_PROGRAM@%$INSTALL_PROGRAM%g
- + s%@INSTALL_DATA@%$INSTALL_DATA%g
- + s%@RANLIB@%$RANLIB%g
- +
- + CEOF
- + EOF
- + cat >> $CONFIG_STATUS <<EOF
- +
- + CONFIG_FILES=\${CONFIG_FILES-"Makefile"}
- + EOF
- + cat >> $CONFIG_STATUS <<\EOF
- + for ac_file in .. $CONFIG_FILES; do if test "x$ac_file" != x..; then
- + # Support "outfile[:infile]", defaulting infile="outfile.in".
- + case "$ac_file" in
- + *:*) ac_file_in=`/bin/echo "$ac_file"|sed 's%.*:%%'`
- + ac_file=`/bin/echo "$ac_file"|sed 's%:.*%%'` ;;
- + *) ac_file_in="${ac_file}.in" ;;
- + esac
- +
- + # Adjust relative srcdir, etc. for subdirectories.
- +
- + # Remove last slash and all that follows it. Not all systems have dirname.
- + ac_dir=`/bin/echo $ac_file|sed 's%/[^/][^/]*$%%'`
- + if test "$ac_dir" != "$ac_file" && test "$ac_dir" != .; then
- + # The file is in a subdirectory.
- + test ! -d "$ac_dir" && mkdir "$ac_dir"
- + ac_dir_suffix="/$ac_dir"
- + # A "../" for each directory in $ac_dir_suffix.
- + ac_dots=`/bin/echo $ac_dir_suffix|sed 's%/[^/]*%../%g'`
- + else
- + ac_dir_suffix= ac_dots=
- + fi
- +
- + case "$ac_given_srcdir" in
- + .) srcdir=.
- + if test -z "$ac_dots"; then top_srcdir=.
- + else top_srcdir=`/bin/echo $ac_dots|sed 's%/$%%'`; fi ;;
- + /*) srcdir="$ac_given_srcdir$ac_dir_suffix"; top_srcdir="$ac_given_srcdir" ;;
- + *) # Relative path.
- + srcdir="$ac_dots$ac_given_srcdir$ac_dir_suffix"
- + top_srcdir="$ac_dots$ac_given_srcdir" ;;
- + esac
- +
- + case "$ac_given_INSTALL" in
- + [/$]*) INSTALL="$ac_given_INSTALL" ;;
- + *) INSTALL="$ac_dots$ac_given_INSTALL" ;;
- + esac
- + echo creating "$ac_file"
- + rm -f "$ac_file"
- + configure_input="Generated automatically from `/bin/echo $ac_file_in|sed 's%.*/%%'` by configure."
- + case "$ac_file" in
- + *Makefile*) ac_comsub="1i\\
- + # $configure_input" ;;
- + *) ac_comsub= ;;
- + esac
- + sed -e "$ac_comsub
- + s%@configure_input@%$configure_input%g
- + s%@srcdir@%$srcdir%g
- + s%@top_srcdir@%$top_srcdir%g
- + s%@INSTALL@%$INSTALL%g
- + " -f conftest.subs $ac_given_srcdir/$ac_file_in > $ac_file
- + fi; done
- + rm -f conftest.subs
- +
- +
- +
- + exit 0
- + EOF
- + chmod +x $CONFIG_STATUS
- + rm -fr confdefs* $ac_clean_files
- + test "$no_create" = yes || ${CONFIG_SHELL-/bin/sh} $CONFIG_STATUS
- +
- diff -rc --new-file jove-4.14.6/configure.in /gnu/src/amiga/jove-4.14.6/configure.in
- *** jove-4.14.6/configure.in Thu Jan 1 00:00:00 1970
- --- /gnu/src/amiga/jove-4.14.6/configure.in Thu Jan 12 21:00:21 1995
- ***************
- *** 0 ****
- --- 1,9 ----
- + dnl Process this file with autoconf to produce a configure script.
- + AC_INIT(jove.h)
- +
- + AC_PROG_CC
- + AC_GCC_TRADITIONAL
- + AC_PROG_INSTALL
- + AC_PROG_RANLIB
- +
- + AC_OUTPUT(Makefile)
- diff -rc --new-file jove-4.14.6/extend.c /gnu/src/amiga/jove-4.14.6/extend.c
- *** jove-4.14.6/extend.c Fri Jan 10 02:46:36 1992
- --- /gnu/src/amiga/jove-4.14.6/extend.c Thu Jan 12 21:35:55 1995
- ***************
- *** 510,516 ****
- --- 510,520 ----
- buf[FILESIZE];
-
- #ifndef MSDOS
- + #ifdef __amigados__
- + swritef(buf, sizeof(buf), "/s/.joverc");
- + #else
- swritef(buf, sizeof(buf), "%s/.joverc", HomeDir);
- + #endif
- #else /* MSDOS */
- if (com = getenv("JOVERC"))
- strcpy(buf, com);
- diff -rc --new-file jove-4.14.6/externs.h /gnu/src/amiga/jove-4.14.6/externs.h
- *** jove-4.14.6/externs.h Sat Jan 22 09:29:40 1994
- --- /gnu/src/amiga/jove-4.14.6/externs.h Thu Jan 12 20:32:32 1995
- ***************
- *** 128,134 ****
- GCchunks proto((void)),
-
- /* fmt.c */
- ! format proto((char *buf, size_t len, const char *fmt, char *ap)),
- add_mess proto((const char *, ...)),
- f_mess proto((const char *, ...)),
- fwritef proto((struct FileStruct *, const char *, ...)),
- --- 128,136 ----
- GCchunks proto((void)),
-
- /* fmt.c */
- ! #if 0
- ! format proto((char *buf, size_t len, const char *fmt, va_list ap)),
- ! #endif
- add_mess proto((const char *, ...)),
- f_mess proto((const char *, ...)),
- fwritef proto((struct FileStruct *, const char *, ...)),
- diff -rc --new-file jove-4.14.6/install.sh /gnu/src/amiga/jove-4.14.6/install.sh
- *** jove-4.14.6/install.sh Thu Jan 1 00:00:00 1970
- --- /gnu/src/amiga/jove-4.14.6/install.sh Thu Jan 12 20:36:57 1995
- ***************
- *** 0 ****
- --- 1,119 ----
- + #!/bin/sh
- +
- + #
- + # install - install a program, script, or datafile
- + # This comes from X11R5; it is not part of GNU.
- + #
- + # $XConsortium: install.sh,v 1.2 89/12/18 14:47:22 jim Exp $
- + #
- + # This script is compatible with the BSD install script, but was written
- + # from scratch.
- + #
- +
- +
- + # set DOITPROG to echo to test this script
- +
- + # Don't use :- since 4.3BSD and earlier shells don't like it.
- + doit="${DOITPROG-}"
- +
- +
- + # put in absolute paths if you don't have them in your path; or use env. vars.
- +
- + mvprog="${MVPROG-mv}"
- + cpprog="${CPPROG-cp}"
- + chmodprog="${CHMODPROG-chmod}"
- + chownprog="${CHOWNPROG-chown}"
- + chgrpprog="${CHGRPPROG-chgrp}"
- + stripprog="${STRIPPROG-strip}"
- + rmprog="${RMPROG-rm}"
- +
- + instcmd="$mvprog"
- + chmodcmd=""
- + chowncmd=""
- + chgrpcmd=""
- + stripcmd=""
- + rmcmd="$rmprog -f"
- + mvcmd="$mvprog"
- + src=""
- + dst=""
- +
- + while [ x"$1" != x ]; do
- + case $1 in
- + -c) instcmd="$cpprog"
- + shift
- + continue;;
- +
- + -m) chmodcmd="$chmodprog $2"
- + shift
- + shift
- + continue;;
- +
- + -o) chowncmd="$chownprog $2"
- + shift
- + shift
- + continue;;
- +
- + -g) chgrpcmd="$chgrpprog $2"
- + shift
- + shift
- + continue;;
- +
- + -s) stripcmd="$stripprog"
- + shift
- + continue;;
- +
- + *) if [ x"$src" = x ]
- + then
- + src=$1
- + else
- + dst=$1
- + fi
- + shift
- + continue;;
- + esac
- + done
- +
- + if [ x"$src" = x ]
- + then
- + echo "install: no input file specified"
- + exit 1
- + fi
- +
- + if [ x"$dst" = x ]
- + then
- + echo "install: no destination specified"
- + exit 1
- + fi
- +
- +
- + # If destination is a directory, append the input filename; if your system
- + # does not like double slashes in filenames, you may need to add some logic
- +
- + if [ -d $dst ]
- + then
- + dst="$dst"/`basename $src`
- + fi
- +
- + # Make a temp file name in the proper directory.
- +
- + dstdir=`dirname $dst`
- + dsttmp=$dstdir/#inst.$$#
- +
- + # Move or copy the file name to the temp name
- +
- + $doit $instcmd $src $dsttmp
- +
- + # and set any options; do chmod last to preserve setuid bits
- +
- + if [ x"$chowncmd" != x ]; then $doit $chowncmd $dsttmp; fi
- + if [ x"$chgrpcmd" != x ]; then $doit $chgrpcmd $dsttmp; fi
- + if [ x"$stripcmd" != x ]; then $doit $stripcmd $dsttmp; fi
- + if [ x"$chmodcmd" != x ]; then $doit $chmodcmd $dsttmp; fi
- +
- + # Now rename the file to the real destination.
- +
- + $doit $rmcmd $dst
- + $doit $mvcmd $dsttmp $dst
- +
- +
- + exit 0
- diff -rc --new-file jove-4.14.6/iproc-ptys.c /gnu/src/amiga/jove-4.14.6/iproc-ptys.c
- *** jove-4.14.6/iproc-ptys.c Fri Jan 10 02:46:54 1992
- --- /gnu/src/amiga/jove-4.14.6/iproc-ptys.c Thu Jan 12 20:32:32 1995
- ***************
- *** 396,402 ****
- --- 396,404 ----
- }
-
- #ifdef TIOCSCTTY
- + #if 0
- (void) setsid();
- + #endif
- (void) ioctl(0, TIOCSCTTY, 0);
- #else
- i = getpid();
- diff -rc --new-file jove-4.14.6/jove.c /gnu/src/amiga/jove-4.14.6/jove.c
- *** jove-4.14.6/jove.c Fri Jan 10 02:46:40 1992
- --- /gnu/src/amiga/jove-4.14.6/jove.c Thu Jan 12 21:58:07 1995
- ***************
- *** 1365,1371 ****
- }
- #endif
-
- ! void
-
- #ifdef MAC /* will get args from user, if option key held during launch */
- main()
- --- 1365,1371 ----
- }
- #endif
-
- ! int
-
- #ifdef MAC /* will get args from user, if option key held during launch */
- main()
- ***************
- *** 1479,1485 ****
- HomeDir = "/";
- HomeLen = strlen(HomeDir);
-
- ! #ifdef UNIX
- if ((cp = getenv("MAIL")) != NULL) {
- strcpy(Mailbox, cp);
- } else {
- --- 1479,1485 ----
- HomeDir = "/";
- HomeLen = strlen(HomeDir);
-
- ! #ifdef MAILSPOOL
- if ((cp = getenv("MAIL")) != NULL) {
- strcpy(Mailbox, cp);
- } else {
- ***************
- *** 1506,1513 ****
- if (!scanvec(argv, "-j") && (!cp || *cp == '\0')) {
- char tmpbuf[100];
-
- ! swritef(tmpbuf, sizeof(tmpbuf), "%s/.joverc", HomeDir);
- ! (void) joverc(tmpbuf); /* .joverc in home directory */
- }
-
- #ifndef MSDOS
- --- 1506,1516 ----
- if (!scanvec(argv, "-j") && (!cp || *cp == '\0')) {
- char tmpbuf[100];
-
- ! if (HomeDir != NULL && strcmp (HomeDir, "/") != 0)
- ! {
- ! swritef(tmpbuf, sizeof(tmpbuf), "%s/.joverc", HomeDir);
- ! (void) joverc(tmpbuf); /* .joverc in home directory */
- ! }
- }
-
- #ifndef MSDOS
- diff -rc --new-file jove-4.14.6/setmaps.c /gnu/src/amiga/jove-4.14.6/setmaps.c
- *** jove-4.14.6/setmaps.c Fri Jan 10 02:46:50 1992
- --- /gnu/src/amiga/jove-4.14.6/setmaps.c Thu Jan 12 20:32:33 1995
- ***************
- *** 90,96 ****
- }
-
-
- ! void
-
- #ifdef MAC
- _main() /* for Mac, so we can use redirection */
- --- 90,96 ----
- }
-
-
- ! int
-
- #ifdef MAC
- _main() /* for Mac, so we can use redirection */
- diff -rc --new-file jove-4.14.6/sysdep.h /gnu/src/amiga/jove-4.14.6/sysdep.h
- *** jove-4.14.6/sysdep.h Fri Jan 10 02:46:36 1992
- --- /gnu/src/amiga/jove-4.14.6/sysdep.h Thu Jan 12 21:27:04 1995
- ***************
- *** 27,33 ****
- IBMPC is defined in the Makefile. */
-
- #ifndef MSDOS
- ! # ifndef MAC
- # define UNIX 1 /* default to UNIX */
- # endif
- #endif
- --- 27,33 ----
- IBMPC is defined in the Makefile. */
-
- #ifndef MSDOS
- ! # ifndef MAC
- # define UNIX 1 /* default to UNIX */
- # endif
- #endif
- ***************
- *** 282,289 ****
- --- 282,293 ----
- # define TERMIO 1 /* uses termio struct for terminal modes */
- #endif
-
- + #ifndef __amigados__
- + #ifdef UNIX
- #ifdef SYSV
- # define MAILSPOOL "/usr/mail"
- #else
- # define MAILSPOOL "/usr/spool/mail"
- + #endif
- + #endif
- #endif
- diff -rc --new-file jove-4.14.6/teachjove.c /gnu/src/amiga/jove-4.14.6/teachjove.c
- *** jove-4.14.6/teachjove.c Fri Jan 10 02:46:50 1992
- --- /gnu/src/amiga/jove-4.14.6/teachjove.c Thu Jan 12 22:21:28 1995
- ***************
- *** 37,44 ****
- --- 37,48 ----
- *home;
-
- if ((home = getenv("HOME")) == NULL) {
- + #ifdef __amigados__
- + home = "/tmp";
- + #else
- printf("teachjove: cannot find your home!\n");
- exit(-1);
- + #endif
- }
- (void) sprintf(fname, "%s/teach-jove", home);
- if (access(fname, F_OK) != 0) {
- diff -rc --new-file jove-4.14.6/term.c /gnu/src/amiga/jove-4.14.6/term.c
- *** jove-4.14.6/term.c Fri Jan 10 02:46:52 1992
- --- /gnu/src/amiga/jove-4.14.6/term.c Thu Jan 12 21:24:51 1995
- ***************
- *** 139,144 ****
- --- 139,147 ----
- (strcmp(termname, "dumb") == 0) ||
- (strcmp(termname, "unknown") == 0) ||
- (strcmp(termname, "network") == 0)) {
- + #ifdef __amigados__
- + putstr("No TERM environment variable set, recommend \"setenv TERM=amiga\"\n");
- + #endif
- putstr("Enter terminal type (e.g, vt100): ");
- flushscreen();
- termbuf[read(0, (UnivPtr) termbuf, sizeof(termbuf)) - 1] = '\0';
- diff -rc --new-file jove-4.14.6/tune.h /gnu/src/amiga/jove-4.14.6/tune.h
- *** jove-4.14.6/tune.h Fri Jan 10 02:46:52 1992
- --- /gnu/src/amiga/jove-4.14.6/tune.h Thu Jan 12 20:32:33 1995
- ***************
- *** 11,22 ****
- --- 11,24 ----
-
- #ifdef UNIX
- # define SUBPROCS 1 /* only on UNIX systems (NOT INCORPORATED YET) */
- + #ifndef __amigados__
- # define IPROCS 1 /* interactive processes */
- # ifdef BSD4_2
- # define PTYPROCS 1 /* use pseudo-ttys */
- # else
- # define PIPEPROCS 1 /* use pipes */
- # endif
- + #endif
- #endif /* UNIX */
-
- #define BACKUPFILES 1 /* enable the backup files code */
- diff -rc --new-file jove-4.14.6/tune.template /gnu/src/amiga/jove-4.14.6/tune.template
- *** jove-4.14.6/tune.template Fri Jan 10 02:46:52 1992
- --- /gnu/src/amiga/jove-4.14.6/tune.template Thu Jan 12 21:41:00 1995
- ***************
- *** 13,19 ****
- --- 13,23 ----
- *CmdDb = "SHAREDIR/cmds.doc",
- /* copy of "cmds.doc" lives in the doc subdirectory */
-
- + #ifdef __amigados__
- + *Joverc = "/s/.joverc",
- + #else
- *Joverc = "SHAREDIR/jove.rc",
- + #endif
-
- #if defined(IPROCS) && defined(PIPEPROCS)
- *Portsrv = "LIBDIR/portsrv",
- diff -rc --new-file jove-4.14.6/util.h /gnu/src/amiga/jove-4.14.6/util.h
- *** jove-4.14.6/util.h Fri Jan 10 02:46:52 1992
- --- /gnu/src/amiga/jove-4.14.6/util.h Thu Jan 12 20:32:33 1995
- ***************
- *** 78,84 ****
- ins_c proto((int c,char *buf,int atchar,int num,int max)),
- len_error proto((int flag)),
- linecopy proto((char *onto,int atchar,char *from)),
- ! make_argv proto((char * *argv,char *ap)),
- modify proto((void)),
- SitFor proto((int delay)),
- null_ncpy proto((char *to, char *from, size_t n)),
- --- 78,86 ----
- ins_c proto((int c,char *buf,int atchar,int num,int max)),
- len_error proto((int flag)),
- linecopy proto((char *onto,int atchar,char *from)),
- ! #if 0
- ! make_argv proto((char * *argv, va_list ap)),
- ! #endif
- modify proto((void)),
- SitFor proto((int delay)),
- null_ncpy proto((char *to, char *from, size_t n)),
-