Path: utzoo!utgpu!news-server.csri.toronto.edu!cs.utexas.edu!swrinde!zaphod.mps.ohio-state.edu!mips!smsc.sony.com!dce From: dce@smsc.sony.com (David Elliott) Newsgroups: comp.windows.x Subject: xneko bug fixes Message-ID: <1990Oct5.153638.6892@smsc.sony.com> Date: 5 Oct 90 15:36:38 GMT Sender: dce@smsc.sony.com (David Elliott) Organization: Sony Microsystems Corp, San Jose, CA Lines: 36 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)