Remove the include of X11/misc.h, which fails to compile and isn't

necessary.
This commit is contained in:
Eric Anholt 2006-02-10 07:47:21 +00:00
parent d875bdb275
commit fa3a65e33d
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-02-09 Eric Anholt <anholt@FreeBSD.org>
* GL/glx/indirect_reqsize.c:
2006-02-03 Jeremy C. Reed <reed@reedmedia.net>
* hw/xfree86/os-support/xf86_OSlib.h

View File

@ -35,7 +35,6 @@
# include <byteswap.h>
# define SWAP_32(v) do { (v) = bswap_32(v); } while(0)
#else
# include <X11/misc.h>
# define SWAP_32(v) do { char tmp; swapl(&v, tmp); } while(0)
#endif