The variable PPosOverride is declared as "Boolean" in fvwm.c, but is
referenced as "extern Bool" in other files. This causes a bus error on
IRIX machines. Enclosed is a patch to fixup fvwm.c and simply change
the variable to be declared as "Bool" which fixes the problem. This is
for fvwm-2.0.46.
*** fvwm/fvwm.c.orig Tue Nov 10 15:14:36 1998
--- fvwm/fvwm.c Tue Nov 10 15:14:52 1998
***************
*** 84,90 ****
Window JunkRoot, JunkChild; /* junk window */
unsigned int JunkWidth, JunkHeight, JunkBW, JunkDepth, JunkMask;
! Boolean debugging = False,PPosOverride,Blackout = False;
char **g_argv;
int g_argc;
--- 84,92 ----
Window JunkRoot, JunkChild; /* junk window */
unsigned int JunkWidth, JunkHeight, JunkBW, JunkDepth, JunkMask;
! Boolean debugging = False;
! Bool PPosOverride;
! Boolean Blackout = False;
char **g_argv;
int g_argc;
--
-Derek
derek_at_hipgraphics.com
--
Visit the official FVWM web page at <URL:http://www.hpc.uh.edu/fvwm/>.
To unsubscribe from the list, send "unsubscribe fvwm" in the body of a
message to majordomo_at_hpc.uh.edu.
To report problems, send mail to fvwm-owner_at_hpc.uh.edu.
Received on Tue Nov 10 1998 - 14:19:38 GMT