@@ -3513,7 +3513,7 @@ function u_check_readline( _i_h, _n_h, ac_cv_rl_append_history, ac_cv_rl_comp
35133513 pyconf_save_env()
35143514 V["CPPFLAGS"] = _str_strip(V["CPPFLAGS"] " " V["READLINE_CFLAGS"])
35153515 V["LIBS"] = _str_strip(V["LIBS"] " " V["READLINE_LIBS"])
3516- use_editline = ((V["WITH_EDITLINE"] == "1 ") ? "yes" : "no")
3516+ use_editline = ((with_readline == "edit ") ? "yes" : "no")
35173517 if (((use_editline != "") && (use_editline != "no"))) {
35183518 rl_includes = "stdio.h" " " "editline/readline.h"
35193519 } else {
@@ -4944,7 +4944,7 @@ function u_setup_module_deps( android_api_level) {
49444944 V["MODULE_DEPS_SHARED"] = "$(MODULE_DEPS_STATIC) $(EXPORTSYMS)"
49454945 V["LIBPYTHON"] = ""
49464946 android_api_level = V["ANDROID_API_LEVEL"]
4947- if (((V["PY_ENABLE_SHARED"] == "1" ) && (((android_api_level != "") && (android_api_level != "no")) || (V["MACHDEP"] == "cygwin")))) {
4947+ if (((V["PY_ENABLE_SHARED"] == 1 ) && (((android_api_level != "") && (android_api_level != "no")) || (V["MACHDEP"] == "cygwin")))) {
49484948 V["MODULE_DEPS_SHARED"] = V["MODULE_DEPS_SHARED"] " $(LDLIBRARY)"
49494949 V["LIBPYTHON"] = "$(BLDLIBRARY)"
49504950 }
@@ -5781,7 +5781,7 @@ function u_generate_output( cc, host, srcdir_rel) {
57815781 if (((V["Py_OPT"] != "yes") && (V["Py_DEBUG"] != "yes"))) {
57825782 pyconf_notice("\nIf you want a release build with all stable optimizations active (PGO, etc),\nplease run ./configure --enable-optimizations\n")
57835783 }
5784- if (((( V["PY_SUPPORT_TIER"] != "") ? V["PY_SUPPORT_TIER"] : "1") == "0" )) {
5784+ if ((V["PY_SUPPORT_TIER"] == 0 )) {
57855785 cc = V["ac_cv_cc_name"]
57865786 host = V["host"]
57875787 print "Platform \"" host "\" with compiler \"" cc "\" is not supported by the CPython core team, see https://peps.python.org/pep-0011/ for more information." > "/dev/stderr"
0 commit comments