This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Michael.Felt
Recipients Michael.Felt, vstinner
Date 2019-04-10.15:54:50
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <de437afa-393e-d585-64f3-2406a936abd3@felt.demon.nl>
In-reply-to <1554908758.55.0.379666129839.issue36588@roundup.psfhosted.org>
Content
On 10/04/2019 17:05, STINNER Victor wrote:
> STINNER Victor <vstinner@redhat.com> added the comment:
>
> I like the idea. Would you like to propose a patch? I suggest to only make such change in Python 3.8 and properly document it.
>
> ----------
> nosy: +vstinner
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <https://bugs.python.org/issue36588>
> _______________________________________
>
If I understand correctly, the change should be quite simple:

diff --git a/configure.ac b/configure.ac
index 73ee71c..9632add 100644
--- a/configure.ac
+++ b/configure.ac
@@ -404,6 +404,7 @@ then
     MACHDEP="$ac_md_system$ac_md_release"

     case $MACHDEP in
+       aix*) MACHDEP="aix";;
        linux*) MACHDEP="linux";;
        cygwin*) MACHDEP="cygwin";;
        darwin*) MACHDEP="darwin";;

However, I am less familiar with (where) the appropriate documentation
is. A pointer to the documentation is appreciated.
History
Date User Action Args
2019-04-10 15:54:50Michael.Feltsetrecipients: + Michael.Felt, vstinner
2019-04-10 15:54:50Michael.Feltlinkissue36588 messages
2019-04-10 15:54:50Michael.Feltcreate