Added support to KfreeBSD and HURD

This commit is contained in:
brenosilva 2012-06-05 17:03:49 +00:00
parent d88a24da1f
commit 3457fcbd55
2 changed files with 12 additions and 2 deletions

View File

@ -72,6 +72,8 @@ XX NNN 2012 - 2.7.0-rc1
^ Added new rule metadata actions ver, maturity and accuracy. Also included into RULE collection.
* Added build system support for KfreeBSD and HURD.
* Fixed Variable DURATION contains the elapsed time in microseconds for compatible reasons with apache and
other variables.

View File

@ -110,12 +110,20 @@ case $host in
freebsdos=true
;;
*-*-netbsd*)
echo "Checking plataform... Identified as FreeBSD"
echo "Checking plataform... Identified as NetBSD"
netbsdos=true
;;
*-*-openbsd*)
echo "Checking plataform... Identified as FreeBSD"
echo "Checking plataform... Identified as OpenBSD"
openbsdos=true
;;
*-*-kfreebsd*)
echo "Checking plataform... Identified as kFreeBSD, treating as linux"
linuxos=true
;;
*-*-gnu*.*)
echo "Checking plataform... Identified as HURD, treating as linux"
linuxos=true
;;
*)
echo "Unknown CANONICAL_HOST $host"