about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgco <gco@jazzhaiku.com>2022-06-10 20:11:53 -0700
committerLeah Neukirchen <leah@vuxu.org>2022-06-20 16:08:12 +0200
commite6813fd07cb102f5e0826bf33560d4cfa255073a (patch)
tree32870b6c9e42e4bd8504822497f03372262c1378
parent877569a6f3810a3ef8672bd9c056f313e77d2ea1 (diff)
downloadmblaze-e6813fd07cb102f5e0826bf33560d4cfa255073a.tar.gz
mblaze-e6813fd07cb102f5e0826bf33560d4cfa255073a.tar.xz
mblaze-e6813fd07cb102f5e0826bf33560d4cfa255073a.zip
solaris needs termios.h and __EXTENSIONS__ for TIOCGWINSZ and winsize
-rw-r--r--mflow.c5
-rw-r--r--mscan.c4
2 files changed, 9 insertions, 0 deletions
diff --git a/mflow.c b/mflow.c
index 9bed19d..5ba925e 100644
--- a/mflow.c
+++ b/mflow.c
@@ -1,3 +1,7 @@
+#ifdef __sun
+#define __EXTENSIONS__ /* to get TIOCGWINSZ */
+#endif
+
 #include <sys/ioctl.h>
 #include <sys/stat.h>
 
@@ -9,6 +13,7 @@
 #include <string.h>
 #include <strings.h>
 #include <unistd.h>
+#include <termios.h>
 
 #include "blaze822.h"
 #include "xpledge.h"
diff --git a/mscan.c b/mscan.c
index 52ba9a4..0494409 100644
--- a/mscan.c
+++ b/mscan.c
@@ -1,6 +1,9 @@
 #ifndef _XOPEN_SOURCE
 #define _XOPEN_SOURCE 700
 #endif
+#ifdef __sun
+#define __EXTENSIONS__ /* to get TIOCGWINSZ */
+#endif
 
 #include "xpledge.h"
 
@@ -19,6 +22,7 @@
 #include <time.h>
 #include <unistd.h>
 #include <wchar.h>
+#include <termios.h>
 
 #include "blaze822.h"
 #include "u8decode.h"