1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-08 11:33:49 -05:00

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

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)"
;;