Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

two bugs in zsh 3.0.1-test3



=====================================================================
Bug 1:

	If zsh 3.0.1-test3 is compiled in a separate object directory,
	the compilation goes ok, but the install fails, because
	the info files are not found by the Make. Here is a fix
	to this problem:

*** Doc/Makefile.in~    Wed Jul 31 21:41:12 1996
--- Doc/Makefile.in     Tue Oct  8 19:25:07 1996
***************
*** 125,131 ****
  # install info pages, creating install directory if necessary
  install.info: zsh.info
        $(top_srcdir)/mkinstalldirs $(infodir)
!       for file in zsh.info zsh.info-[1-9]; do \
          [ -f "$$file" ] && $(INSTALL_DATA) $$file $(infodir) ; \
        done

--- 125,131 ----
  # install info pages, creating install directory if necessary
  install.info: zsh.info
        $(top_srcdir)/mkinstalldirs $(infodir)
!       for file in $(srcdir)/zsh.info $(srcdir)/zsh.info-[1-9]; do \
          [ -f "$$file" ] && $(INSTALL_DATA) $$file $(infodir) ; \
        done

=====================================================================
Bug 2:

	In an Alpha host running Digital Unix V4.0:

narya dist 554 % uname -a
OSF1 narya.hut.fi V4.0 386 alpha

	The zsh prototypes.h file contains a prototype declaration
	for the ioctl routine:

int ioctl _((int d, unsigned long request, void *argp));

	The declaration is inconsistent with the vendor supplied
	prototype declaration in /usr/include/sys/ioctl.h :

extern int 	ioctl __((int, int, ...));

	I compiled zsh by commenting out the ioctl declaration
	from prototypes.h.

					Juki
					jtv@xxxxxx



Messages sorted by: Reverse Date, Date, Thread, Author