diff options
author | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-03-09 13:22:57 -0700 |
---|---|---|
committer | Alan Coopersmith <alan.coopersmith@sun.com> | 2009-04-09 17:10:12 -0700 |
commit | a0b6a363dca8ce0dc6f4eb79333e48496153cd67 (patch) | |
tree | e67b9bb7ba752daf740905818cb26e6b110ac31a /os/log.c | |
parent | fcc19e673e3ef33d64916dd933853f8aa667c4d7 (diff) |
Lift fatal signal handlers from DDX'es up to a common DIX implementation
Signed-off-by: Alan Coopersmith <alan.coopersmith@sun.com>
Diffstat (limited to 'os/log.c')
-rw-r--r-- | os/log.c | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -98,6 +98,10 @@ OR PERFORMANCE OF THIS SOFTWARE. #define getpid(x) _getpid(x) #endif +#ifdef XF86BIGFONT +#define _XF86BIGFONT_SERVER_ +#include <X11/extensions/xf86bigfont.h> +#endif #ifdef DDXOSVERRORF void (*OsVendorVErrorFProc)(const char *, va_list args) = NULL; @@ -401,6 +405,9 @@ void AbortServer(void) __attribute__((noreturn)); void AbortServer(void) { +#ifdef XF86BIGFONT + XF86BigfontCleanup(); +#endif CloseWellKnownConnections(); OsCleanup(TRUE); CloseDownDevices(); |