in_x11.c - always define in_dgamouse, so it can be false when there is no DGA

quakefs.c - include strings.h for strcasecmp() under AIX
This commit is contained in:
Loring Holden 2000-06-01 03:37:48 +00:00
parent 1af69a110f
commit 63dccb8968
2 changed files with 4 additions and 1 deletions

View file

@ -68,8 +68,8 @@
cvar_t *_windowed_mouse;
cvar_t *m_filter;
#ifdef HAVE_DGA
cvar_t *in_dgamouse;
#ifdef HAVE_DGA
cvar_t *in_dga_mouseaccel;
#endif

View file

@ -48,6 +48,9 @@
#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#include <fcntl.h>
#include <dirent.h>