Fixed bug where if X11 is not dynamically loaded, then we think none of the X11 modules are available.

This commit is contained in:
Sam Lantinga 2013-02-18 16:24:33 -08:00
parent 6b7a2ee71b
commit 72ec6bcbe2

View file

@ -211,6 +211,12 @@ SDL_X11_LoadSymbols(void)
}
}
#else
#define SDL_X11_MODULE(modname) SDL_X11_HAVE_##modname = 1; /* default yes */
#define SDL_X11_SYM(a,fn,x,y,z)
#include "SDL_x11sym.h"
#undef SDL_X11_MODULE
#undef SDL_X11_SYM
#ifdef X_HAVE_UTF8_STRING
pXCreateIC = XCreateIC;
pXGetICValues = XGetICValues;