[comp.windows.x] xneko bug fixes

dce@smsc.sony.com (David Elliott) (10/05/90)

Sorry to waste bandwidth on this, but someone placed a copy of the
xneko source on expo recently, and it doesn't have an email address for
the author/maintainer.  The archive has no Imakefile (but the Makefile
was obviously generated by one) and there is a small bug that makes it
not work under System V (assuming a System V with setitimer).

So, without further ado:

*** xneko.c.orig	Thu Oct  4 06:34:23 1990
--- xneko.c	Thu Oct  4 11:11:21 1990
***************
*** 1557,1563 ****
--- 1557,1567 ----
  void
  NullFunction()
  {
+ #ifdef SYSV
+     signal( SIGALRM, NullFunction );
+ #else
      /* No Operation */
+ #endif
  }
  
  
*** /dev/null	Fri Oct  5 08:01:05 1990
--- Imakefile	Thu Oct  4 10:54:22 1990
***************
*** 0 ****
--- 1,7 ----
+ LOCAL_LIBRARIES = $(XTOOLLIB) $(XLIB) -lm
+ #CDEBUGFLAGS = -g
+ 
+ SRCS = xneko.c
+ OBJS = xneko.o
+ 
+ ComplexProgramTarget(xneko)