aboutsummaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorØrjan Malde <red@foxi.me>2019-10-20 20:22:22 +0200
committerØrjan Malde <red@foxi.me>2019-10-20 20:22:22 +0200
commitb80c4bf262a4eefbe55be78fee5853b787711bca (patch)
tree67f476b65926bf312e01c0aef46b1c384e4a1282 /m4
parent6de156f87cb127e1540c2c3be8070523c69b827e (diff)
downloadportable-b80c4bf262a4eefbe55be78fee5853b787711bca.tar.gz
portable-b80c4bf262a4eefbe55be78fee5853b787711bca.tar.bz2
portable-b80c4bf262a4eefbe55be78fee5853b787711bca.zip
initial support for midipix
Diffstat (limited to 'm4')
-rw-r--r--m4/check-os-options.m45
1 files changed, 5 insertions, 0 deletions
diff --git a/m4/check-os-options.m4 b/m4/check-os-options.m4
index 6483c89..8241aee 100644
--- a/m4/check-os-options.m4
+++ b/m4/check-os-options.m4
@@ -80,6 +80,10 @@ char buf[1]; getentropy(buf, 1);
80 HOST_ABI=elf 80 HOST_ABI=elf
81 CPPFLAGS="$CPPFLAGS -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_SOURCE -D_GNU_SOURCE" 81 CPPFLAGS="$CPPFLAGS -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_SOURCE -D_GNU_SOURCE"
82 ;; 82 ;;
83 *midipix*)
84 HOST_OS=midipix
85 CPPFLAGS="$CPPFLAGS -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_POSIX_SOURCE -D_GNU_SOURCE"
86 ;;
83 *netbsd*) 87 *netbsd*)
84 HOST_OS=netbsd 88 HOST_OS=netbsd
85 HOST_ABI=elf 89 HOST_ABI=elf
@@ -130,6 +134,7 @@ AM_CONDITIONAL([HOST_DARWIN], [test x$HOST_OS = xdarwin])
130AM_CONDITIONAL([HOST_FREEBSD], [test x$HOST_OS = xfreebsd]) 134AM_CONDITIONAL([HOST_FREEBSD], [test x$HOST_OS = xfreebsd])
131AM_CONDITIONAL([HOST_HPUX], [test x$HOST_OS = xhpux]) 135AM_CONDITIONAL([HOST_HPUX], [test x$HOST_OS = xhpux])
132AM_CONDITIONAL([HOST_LINUX], [test x$HOST_OS = xlinux]) 136AM_CONDITIONAL([HOST_LINUX], [test x$HOST_OS = xlinux])
137AM_CONDITIONAL([HOST_MIDIPIX], [test x$HOST_OS = xmidipix])
133AM_CONDITIONAL([HOST_NETBSD], [test x$HOST_OS = xnetbsd]) 138AM_CONDITIONAL([HOST_NETBSD], [test x$HOST_OS = xnetbsd])
134AM_CONDITIONAL([HOST_OPENBSD], [test x$HOST_OS = xopenbsd]) 139AM_CONDITIONAL([HOST_OPENBSD], [test x$HOST_OS = xopenbsd])
135AM_CONDITIONAL([HOST_SOLARIS], [test x$HOST_OS = xsolaris]) 140AM_CONDITIONAL([HOST_SOLARIS], [test x$HOST_OS = xsolaris])