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.

classification
Title: undef HAVE_STROPTS_H in pyconfig.h.in is ignored
Type: compile error Stage: resolved
Components: Build Versions: Python 3.7
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: Shady Atef
Priority: normal Keywords:

Created on 2019-03-19 09:02 by Shady Atef, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Messages (2)
msg338333 - (view) Author: Shady Atef (Shady Atef) Date: 2019-03-19 09:02
I have `#undef HAVE_STROPTS_H` inside pyconfig.h.in, but after configuration it's commented out in pyconfig.h. Leading into compilation error as stropts.h is not found.

It seems like the configuration phase ignores the #undef directive for a reason.

These are the configuration parameters 

./configure --prefix=/home/shatef/python/Python3.7.2/build_rh67_491 --enable-shared --with-openssl=$OPENSSL_HOME CPPFLAGS="-I/home/shatef/libs/libffi-3.2.1/build/lib/libffi-3.2.1/include"  CFLAGS="-fgnu89-inline     -D__USE_XOPEN2K8"  LDFLAGS="-L/home/shatef/libs/libffi-3.2.1/build/lib64"

Building Information:
OS: Redhat 6.7
Compiler: GCC 4.9.1
msg338336 - (view) Author: Shady Atef (Shady Atef) Date: 2019-03-19 09:35
I've found out that I run ./configure on different machine than the one I run compile.

A side note: make clean don't remove files generated by the configuration script. make distclean does the required cleaning task.
History
Date User Action Args
2022-04-11 14:59:12adminsetgithub: 80541
2019-03-19 09:35:52Shady Atefsetstatus: open -> closed
resolution: not a bug
messages: + msg338336

stage: resolved
2019-03-19 09:02:02Shady Atefcreate