(Bug fix) Include the SIGWINCH handler even if `wresize' isn't known.
authormdw <mdw>
Tue, 27 Jul 1999 14:04:19 +0000 (14:04 +0000)
committermdw <mdw>
Tue, 27 Jul 1999 14:04:19 +0000 (14:04 +0000)
src/pres_curses.c

index f0a14d0..7ed1b72 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-c-*-
  *
- * $Id: pres_curses.c,v 1.5 1999/07/27 12:49:16 mdw Exp $
+ * $Id: pres_curses.c,v 1.6 1999/07/27 14:04:19 mdw Exp $
  *
  * Curses-based output presentation
  *
 /*----- Revision history --------------------------------------------------* 
  *
  * $Log: pres_curses.c,v $
- * Revision 1.5  1999/07/27 12:49:16  mdw
+ * Revision 1.6  1999/07/27 14:04:19  mdw
+ * (Bug fix) Include the SIGWINCH handler even if `wresize' isn't known.
+ *
+ * Revision 1.5  1999/07/27  12:49:16  mdw
  * Slight tidying of resizing terminal handling.
  *
  * Revision 1.4  1999/07/16  16:52:28  mdw
@@ -250,7 +253,7 @@ int curses_init(archcons *a)
   }
   doupdate();
 
-#ifdef HAVE_WRESIZE
+#ifdef SIGWINCH
   signal(SIGWINCH, sig_winch);
 #endif
 #ifdef SIGTSTP