st should compile on NetBSD. - st - Simple Terminal
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit bef87acd0d0e22ba4689be6f1c39ce2d90812317
(DIR) parent 1bb7398f4b9e38e1c42157717a9dc420bc645d2d
(HTM) Author: Aurélien Aptel <aurelien.aptel@gmail.com>
Date: Mon, 30 Aug 2010 01:20:38 +0200
st should compile on NetBSD.
Diffstat:
config.mk | 1 +
st.c | 2 +-
2 files changed, 2 insertions(+), 1 deletion(-)
---
(DIR) diff --git a/config.mk b/config.mk
@@ -19,6 +19,7 @@ SYSTEM = -D`uname | tr a-z A-Z`
#SYSTEM = -DLINUX
#SYSTEM = -DOPENBSD
#SYSTEM = -DFREEBSD
+#SYSTEM = -DNETBSD
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\" ${SYSTEM}
(DIR) diff --git a/st.c b/st.c
@@ -22,7 +22,7 @@
#if defined(LINUX)
#include <pty.h>
-#elif defined(OPENBSD)
+#elif defined(OPENBSD) || defined(NETBSD)
#include <util.h>
#elif defined(FREEBSD)
#include <libutil.h>