From 1e0d453f05c316e5d568b43cb59128ba696a89b5 Mon Sep 17 00:00:00 2001 From: Brent Cook Date: Tue, 28 May 2024 07:00:04 -0500 Subject: Remove dead bitrig support, error on unsupported platforms --- m4/check-os-options.m4 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'm4') diff --git a/m4/check-os-options.m4 b/m4/check-os-options.m4 index 77edd14..a8c4904 100644 --- a/m4/check-os-options.m4 +++ b/m4/check-os-options.m4 @@ -109,7 +109,7 @@ char buf[1]; getentropy(buf, 1); ) CPPFLAGS="$CPPFLAGS -D_OPENBSD_SOURCE" ;; - *openbsd* | *bitrig*) + *openbsd*) HOST_OS=openbsd HOST_ABI=elf AC_DEFINE([HAVE_ATTRIBUTE__BOUNDED__], [1], [OpenBSD gcc has bounded]) @@ -131,7 +131,9 @@ char buf[1]; getentropy(buf, 1); CPPFLAGS="$CPPFLAGS -D__EXTENSIONS__ -D_XOPEN_SOURCE=600 -DBSD_COMP" AC_SUBST([PLATFORM_LDADD], ['-ldl -lmd -lnsl -lsocket']) ;; - *) ;; + *) + HOST_OS=unsupported + ;; esac # Check if time_t is sized correctly -- cgit v1.2.3-55-g6feb