aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xconfigure9
-rw-r--r--configure.ac9
2 files changed, 18 insertions, 0 deletions
diff --git a/configure b/configure
index acab82849..087c6b07f 100755
--- a/configure
+++ b/configure
@@ -2051,6 +2051,15 @@ case "${host_os}" in
freebsd*)
OSARCH=FreeBSD
;;
+ netbsd*)
+ OSARCH=NetBSD
+ ;;
+ openbsd*)
+ OSARCH=OpenBSD
+ ;;
+ solaris*)
+ OSARCH=SunOS
+ ;;
*)
OSARCH=${HOST_OS}
;;
diff --git a/configure.ac b/configure.ac
index 71ef55486..588d5f03c 100644
--- a/configure.ac
+++ b/configure.ac
@@ -64,6 +64,15 @@ case "${host_os}" in
freebsd*)
OSARCH=FreeBSD
;;
+ openbsd*)
+ OSARCH=OpenBSD
+ ;;
+ netbsd*)
+ OSARCH=NetBSD
+ ;;
+ solaris*)
+ OSARCH=SunOS
+ ;;
*)
OSARCH=${HOST_OS}
;;