Hi,
1) I prefer a shorter filename like: fvwm-2.0b-pl36.tar.gz
2) Trying to compile it under UnixWare 2.0 and got the below warnings
wherever MWMBorders is referenced:
UX:acomp: WARNING: "borders.c", line ... : integer overflow detected: op "<<"
I changed fvwm.h from:
#define MWMBorders (1<<31)
to
#define MWMBorders ((unsigned int)1<<31)
to get rig of the warmings.
3) gethostbyname is used by FvwmCpp and FvwmM4. The Imakefiles however
do not have -lsocket defined. So I added:
LOCAL_LIBRARIES = $(XLIB) -L../../libs -lfvwmlib -lsocket
4) FvwmButtons.c: line 459 (return;). Would this statement ever be reachable ?
5) FvwmGrabWindow.c: line 631 (return;). Would this statement ever be reachable ?
6) FvwmTalk/FvwmTalk.c: line 446: changed
&nitems, &bytes_aft
to:
(unsigned long *) &nitems, (unsigned long *) &bytes_aft
Now, if we could remove the 'return' from 4) and 5). Then I have 100% clean
compilation. That is NO WARNINGS.
Thanh Ma
tma_at_encore.com
--
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 Wed Oct 04 1995 - 15:39:21 BST