On Sat, Jul 18, 2015 at 08:50:24PM +0100 I heard the voice of Aaron Sloman, and lo! it spake thus: > > If I did 'make ctwm' without redirection then later scraped the > output from an xterm window it did not behave like make all.
As in, it tries to build the forward program and the manpage and blows up? That would be... unexpected. > /usr/local/src/ctwm/ctwm-150718/util.c: In function 'TryToAnimate': > /usr/local/src/ctwm/ctwm-150718/util.c:1024:18: error: storage size of 'tzp' > isn't known That one's easy to fix; we don't need that var, and even if it did it hasn't done anything since $DEITY knows when anyway. Yanked in newer revs, pull at will. > /usr/local/src/ctwm/ctwm-150718/util.c:131:2: error: unknown type name > 'sigjmp_buf' That's a little more guessworky. From a little manpage browsery, try this patch: === modified file 'util.c' --- util.c 2015-07-18 20:24:10 +0000 +++ util.c 2015-07-18 20:28:24 +0000 @@ -120,6 +120,7 @@ #endif #ifdef JPEG +# define _POSIX_C_SOURCE 1 # include <setjmp.h> # include <jpeglib.h> # include <jerror.h> -- Matthew Fuller (MF4839) | [email protected] Systems/Network Administrator | http://www.over-yonder.net/~fullermd/ On the Internet, nobody can hear you scream.
