Document text corruption issue with Xorg ATI driver
[sxemacs] / src / sysdep.c
index 53f9068..0828973 100644 (file)
@@ -1371,6 +1371,7 @@ static void tty_init_sys_modes_on_device(struct device *d)
 
        input_fd = CONSOLE_TTY_DATA(con)->infd;
        output_fd = CONSOLE_TTY_DATA(con)->outfd;
+       SXE_SET_UNUSED(output_fd);
 
        emacs_get_tty(input_fd, &CONSOLE_TTY_DATA(con)->old_tty);
        tty = CONSOLE_TTY_DATA(con)->old_tty;
@@ -1725,6 +1726,7 @@ static void tty_reset_sys_modes_on_device(struct device *d)
 
        input_fd = CONSOLE_TTY_DATA(con)->infd;
        output_fd = CONSOLE_TTY_DATA(con)->outfd;
+       SXE_SET_UNUSED(output_fd);
 
 #if defined (IBMR2AIX) && defined (AIXHFT)
        {
@@ -2981,6 +2983,10 @@ get_process_times(double *user_time, double *system_time, double *real_time)
 #endif
 #endif
 
+#if defined HAVE_MPZ && (defined WITH_GMP || defined WITH_MP)
+# include "ent/ent-gmp.h"
+#endif /* MPZ && (GMP || MP) */
+
 /* Figure out how many bits the system's random number generator uses.
    `random' and `lrand48' are assumed to return 31 usable bits.
    BSD `rand' returns a 31 bit value but the low order bits are unusable;