From: Jason Parker Date: Tue, 19 Sep 2006 14:19:54 +0000 (+0000) Subject: Add a few more 'generic' platforms X-Git-Tag: 1.4.0-beta1~64 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=52ad644087c3eee45bb5cf99ea1f3255ecf1ea4b;p=thirdparty%2Fasterisk.git Add a few more 'generic' platforms git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@43258 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/configure b/configure index acab82849b..087c6b07fd 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 71ef554866..588d5f03c6 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} ;;