Merge pull request #924 from jlduran/add-freebsd-to-configure-c-extensions

src/configure: Add FreeBSD
This commit is contained in:
Mislav Marohnić 2016-09-27 15:17:33 -04:00 committed by GitHub
commit c7dcaf1259

3
src/configure vendored
View file

@ -21,6 +21,9 @@ case "$(uname -s)" in
Darwin* )
host_os="darwin$(uname -r)"
;;
FreeBSD* )
host_os="freebsd$(uname -r)"
;;
OpenBSD* )
host_os="openbsd$(uname -r)"
;;