mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-02-21 19:01:20 +00:00
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:
parent
1af69a110f
commit
63dccb8968
2 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue