diff options
author | Brent Cook <bcook@openbsd.org> | 2015-09-12 10:51:11 -0500 |
---|---|---|
committer | Brent Cook <bcook@openbsd.org> | 2015-09-12 10:51:11 -0500 |
commit | a787f964a158aec0fd77d9969e1e600f431f4e38 (patch) | |
tree | a828fd198294b4af30c4de2bc60bf10c8d6208a3 /m4 | |
parent | dcbaa6b69936fa02e0c1c78fddb066ab519040d5 (diff) | |
download | portable-a787f964a158aec0fd77d9969e1e600f431f4e38.tar.gz portable-a787f964a158aec0fd77d9969e1e600f431f4e38.tar.bz2 portable-a787f964a158aec0fd77d9969e1e600f431f4e38.zip |
restrict nc to openbsd builds for now
Diffstat (limited to 'm4')
-rw-r--r-- | m4/check-os-options.m4 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/m4/check-os-options.m4 b/m4/check-os-options.m4 index 4f94897..895d22b 100644 --- a/m4/check-os-options.m4 +++ b/m4/check-os-options.m4 | |||
@@ -43,6 +43,7 @@ case $host_os in | |||
43 | CPPFLAGS="$CPPFLAGS -D_OPENBSD_SOURCE" | 43 | CPPFLAGS="$CPPFLAGS -D_OPENBSD_SOURCE" |
44 | ;; | 44 | ;; |
45 | *openbsd* | *bitrig*) | 45 | *openbsd* | *bitrig*) |
46 | HOST_OS=openbsd | ||
46 | HOST_ABI=elf | 47 | HOST_ABI=elf |
47 | AC_DEFINE([HAVE_ATTRIBUTE__BOUNDED__], [1], [OpenBSD gcc has bounded]) | 48 | AC_DEFINE([HAVE_ATTRIBUTE__BOUNDED__], [1], [OpenBSD gcc has bounded]) |
48 | ;; | 49 | ;; |
@@ -72,6 +73,7 @@ AM_CONDITIONAL([HOST_FREEBSD], [test x$HOST_OS = xfreebsd]) | |||
72 | AM_CONDITIONAL([HOST_HPUX], [test x$HOST_OS = xhpux]) | 73 | AM_CONDITIONAL([HOST_HPUX], [test x$HOST_OS = xhpux]) |
73 | AM_CONDITIONAL([HOST_LINUX], [test x$HOST_OS = xlinux]) | 74 | AM_CONDITIONAL([HOST_LINUX], [test x$HOST_OS = xlinux]) |
74 | AM_CONDITIONAL([HOST_NETBSD], [test x$HOST_OS = xnetbsd]) | 75 | AM_CONDITIONAL([HOST_NETBSD], [test x$HOST_OS = xnetbsd]) |
76 | AM_CONDITIONAL([HOST_OPENBSD], [test x$HOST_OS = xopenbsd]) | ||
75 | AM_CONDITIONAL([HOST_SOLARIS], [test x$HOST_OS = xsolaris]) | 77 | AM_CONDITIONAL([HOST_SOLARIS], [test x$HOST_OS = xsolaris]) |
76 | AM_CONDITIONAL([HOST_WIN], [test x$HOST_OS = xwin]) | 78 | AM_CONDITIONAL([HOST_WIN], [test x$HOST_OS = xwin]) |
77 | ]) | 79 | ]) |