diff options
author | Ned Deily <nad@acm.org> | 2013-11-22 06:42:25 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2013-11-22 06:42:25 (GMT) |
commit | b8f944f0b76ebfeecb181498868f10b273981668 (patch) | |
tree | a818ddc5a97ce0095936b9aebc1da0559f24afb5 /configure | |
parent | c06d6fdc37a70c28feaac60b06047b9f6357c05f (diff) | |
download | cpython-b8f944f0b76ebfeecb181498868f10b273981668.zip cpython-b8f944f0b76ebfeecb181498868f10b273981668.tar.gz cpython-b8f944f0b76ebfeecb181498868f10b273981668.tar.bz2 |
Issue #19649: On OS X, the same set of file names are now installed
in bin directories for all configurations: non-framework vs framework,
and single arch vs universal builds. pythonx.y-32 is now always
installed for 64-bit/32-bit universal builds. The obsolete and
undocumented pythonw* symlinks are no longer installed anywhere.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -712,6 +712,7 @@ _PYTHON_HOST_PLATFORM MACHDEP FRAMEWORKINSTALLAPPSPREFIX FRAMEWORKUNIXTOOLSPREFIX +FRAMEWORKPYTHONW FRAMEWORKALTINSTALLLAST FRAMEWORKALTINSTALLFIRST FRAMEWORKINSTALLLAST @@ -3152,6 +3153,7 @@ if test "${enable_framework+set}" = set; then : FRAMEWORKINSTALLLAST= FRAMEWORKALTINSTALLFIRST= FRAMEWORKALTINSTALLLAST= + FRAMEWORKPYTHONW= if test "x${prefix}" = "xNONE"; then FRAMEWORKUNIXTOOLSPREFIX="${ac_default_prefix}" else @@ -3166,6 +3168,7 @@ if test "${enable_framework+set}" = set; then : FRAMEWORKALTINSTALLFIRST="frameworkinstallstructure " FRAMEWORKINSTALLLAST="frameworkinstallmaclib frameworkinstallapps frameworkinstallunixtools" FRAMEWORKALTINSTALLLAST="frameworkinstallmaclib frameworkinstallapps frameworkaltinstallunixtools" + FRAMEWORKPYTHONW="frameworkpythonw" FRAMEWORKINSTALLAPPSPREFIX="/Applications" if test "x${prefix}" = "xNONE" ; then @@ -3233,6 +3236,7 @@ else FRAMEWORKINSTALLLAST= FRAMEWORKALTINSTALLFIRST= FRAMEWORKALTINSTALLLAST= + FRAMEWORKPYTHONW= if test "x${prefix}" = "xNONE" ; then FRAMEWORKUNIXTOOLSPREFIX="${ac_default_prefix}" else @@ -3255,6 +3259,7 @@ fi + ##AC_ARG_WITH(dyld, ## AS_HELP_STRING([--with-dyld], ## [Use (OpenStep|Rhapsody) dynamic linker])) |