Ethereal-cvs: [ethereal-cvs] cvs commit: ethereal packet-x11.c

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Guy Harris <guy@xxxxxxxxxxxx>
Date: Mon, 12 Jun 2000 04:32:22 -0500 (CDT)
guy         2000/06/12 04:32:15 CDT

  Modified files:
    .                    packet-x11.c 
  Log:
  Don't include <X11/Xlib.h> to get AllPlanes defined; that causes the
  build to fail on Win32 systems.  It's defined (at least in the X11R6 on
  my FreeBSD 3.4 system) as "((unsigned long)~0L)", which presumably means
  "set all the bits" - which means "set all 32 bits" in the "value_string"
  table where it appears, as the value member of an entry in such a table
  is a "guint32", so just use 0xFFFFFFFF.
  
  Get rid of other unneeded #includes as well.
  
  Revision  Changes    Path
  1.3       +2 -18     ethereal/packet-x11.c