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 CuriousLearner
Recipients CuriousLearner
Date 2018-07-14.21:11:55
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1531602716.1.0.56676864532.issue34114@psf.upfronthosting.co.za>
In-reply-to
Content
The step for configuration works correctly and gives a makefile.

On running `./make` the following traceback is produced:

```
$ make                                                                                                         
-----------------------------------------------
Modules/Setup.dist is newer than Modules/Setup;
check to make sure you have all the updates you
need in your Modules/Setup file.
Usually, copying Modules/Setup.dist to Modules/Setup will work.
-----------------------------------------------
gcc -Wno-unused-result -Wsign-compare -g -O0 -Wall    -std=c99 -Wextra -Wno-unused-result -Wno-unused-parameter -Wno-missing-field-initializers -Wstrict-prototypes -Werror=implicit-function-declaration   -I. -I./Include     -c ./Modules/posixmodule.c -o Modules/posixmodule.o
./Modules/posixmodule.c:1548:9: error: use of undeclared identifier '_Py_BEGIN_SUPPRESS_IPH'
        _Py_BEGIN_SUPPRESS_IPH
        ^
./Modules/posixmodule.c:1550:9: error: use of undeclared identifier '_Py_END_SUPPRESS_IPH'
        _Py_END_SUPPRESS_IPH
        ^
./Modules/posixmodule.c:4356:5: error: use of undeclared identifier '_Py_BEGIN_SUPPRESS_IPH'
    _Py_BEGIN_SUPPRESS_IPH
    ^
./Modules/posixmodule.c:4364:5: error: expected expression
    else
    ^
./Modules/posixmodule.c:4368:5: error: use of undeclared identifier '_Py_END_SUPPRESS_IPH'
    _Py_END_SUPPRESS_IPH
    ^
./Modules/posixmodule.c:5075:5: error: use of undeclared identifier '_Py_BEGIN_SUPPRESS_IPH'
    _Py_BEGIN_SUPPRESS_IPH
    ^
./Modules/posixmodule.c:5081:5: error: use of undeclared identifier '_Py_END_SUPPRESS_IPH'
    _Py_END_SUPPRESS_IPH
    ^
./Modules/posixmodule.c:5146:5: error: use of undeclared identifier '_Py_BEGIN_SUPPRESS_IPH'
    _Py_BEGIN_SUPPRESS_IPH
    ^
./Modules/posixmodule.c:5157:5: error: use of undeclared identifier '_Py_END_SUPPRESS_IPH'
    _Py_END_SUPPRESS_IPH
    ^
./Modules/posixmodule.c:5376:5: error: use of undeclared identifier '_Py_BEGIN_SUPPRESS_IPH'
    _Py_BEGIN_SUPPRESS_IPH
    ^
./Modules/posixmodule.c:5379:5: error: use of undeclared identifier '_Py_END_SUPPRESS_IPH'
    _Py_END_SUPPRESS_IPH
    ^
./Modules/posixmodule.c:7996:5: error: use of undeclared identifier '_Py_BEGIN_SUPPRESS_IPH'
    _Py_BEGIN_SUPPRESS_IPH
    ^
./Modules/posixmodule.c:8011:5: error: use of undeclared identifier '_Py_END_SUPPRESS_IPH'
    _Py_END_SUPPRESS_IPH
    ^
./Modules/posixmodule.c:8048:5: error: use of undeclared identifier '_Py_BEGIN_SUPPRESS_IPH'
    _Py_BEGIN_SUPPRESS_IPH
    ^
./Modules/posixmodule.c:8050:5: error: use of undeclared identifier '_Py_END_SUPPRESS_IPH'
    _Py_END_SUPPRESS_IPH
    ^
./Modules/posixmodule.c:8074:5: error: use of undeclared identifier '_Py_BEGIN_SUPPRESS_IPH'
    _Py_BEGIN_SUPPRESS_IPH
    ^
./Modules/posixmodule.c:8077:5: error: use of undeclared identifier '_Py_END_SUPPRESS_IPH'
    _Py_END_SUPPRESS_IPH
    ^
./Modules/posixmodule.c:8265:5: error: use of undeclared identifier '_Py_BEGIN_SUPPRESS_IPH'
    _Py_BEGIN_SUPPRESS_IPH
    ^
./Modules/posixmodule.c:8271:5: error: use of undeclared identifier '_Py_END_SUPPRESS_IPH'
    _Py_END_SUPPRESS_IPH
    ^
fatal error: too many errors emitted, stopping now [-ferror-limit=]
20 errors generated.
make: *** [Modules/posixmodule.o] Error 1
```
History
Date User Action Args
2018-07-14 21:11:56CuriousLearnersetrecipients: + CuriousLearner
2018-07-14 21:11:56CuriousLearnersetmessageid: <1531602716.1.0.56676864532.issue34114@psf.upfronthosting.co.za>
2018-07-14 21:11:56CuriousLearnerlinkissue34114 messages
2018-07-14 21:11:55CuriousLearnercreate