1
0
mirror of https://github.com/pyenv/pyenv.git synced 2025-11-10 04:23:47 -05:00

Allow installation of python 2.4 series

Make possible to install python 2.4.2 and 2.4.6.
This commit is contained in:
Flavio Castelli
2013-07-22 12:17:19 +02:00
parent 0c38147fcb
commit ae86a253e2
3 changed files with 18 additions and 3 deletions

View File

@@ -774,14 +774,19 @@ has_broken_mac_llvm_gcc() {
[[ "$(gcc --version 2>/dev/null || true)" == *"llvm-gcc-4.2"* ]]
}
# Post-install check for Python 2.5.x
build_package_verify_py25() {
# Post-install check for Python 2.4.x
build_package_verify_py24() {
build_package_verify_readline "$@"
build_package_verify_sqlite3 "$@"
build_package_verify_zlib "$@"
build_package_verify_bz2 "$@"
}
# Post-install check for Python 2.5.x
build_package_verify_py25() {
build_package_verify_py24 "$@"
build_package_verify_sqlite3 "$@"
}
# Post-install check for Python 2.6.x
build_package_verify_py26() {
build_package_verify_py25 "$@"