diff options
author | Nathaniel J. Smith <njs@pobox.com> | 2018-01-06 07:15:34 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2018-01-06 07:15:34 (GMT) |
commit | 735ae8d139a673b30b321dc10acfd3d14f0d633b (patch) | |
tree | 027e039ce309a5617d15cdf7f2ef8a1f711fcaaa /configure.ac | |
parent | 502d551c6d782963d26957a9e5ff1588946f233f (diff) | |
download | cpython-735ae8d139a673b30b321dc10acfd3d14f0d633b.zip cpython-735ae8d139a673b30b321dc10acfd3d14f0d633b.tar.gz cpython-735ae8d139a673b30b321dc10acfd3d14f0d633b.tar.bz2 |
bpo-29137: Remove fpectl module (#4789)
This module has never been enabled by default, never worked correctly
on x86-64, and caused ABI problems that caused C extension
compatibility. See bpo-29137 for details/discussion.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/configure.ac b/configure.ac index 9a84e90..0a48e41 100644 --- a/configure.ac +++ b/configure.ac @@ -4135,20 +4135,6 @@ AC_CHECK_FUNC(__fpu_control, [AC_CHECK_LIB(ieee, __fpu_control) ]) -# Check for --with-fpectl -AC_MSG_CHECKING(for --with-fpectl) -AC_ARG_WITH(fpectl, - AS_HELP_STRING([--with-fpectl], [enable SIGFPE catching]), -[ -if test "$withval" != no -then - AC_DEFINE(WANT_SIGFPE_HANDLER, 1, - [Define if you want SIGFPE handled (see Include/pyfpe.h).]) - AC_MSG_RESULT(yes) -else AC_MSG_RESULT(no) -fi], -[AC_MSG_RESULT(no)]) - # check for --with-libm=... AC_SUBST(LIBM) case $ac_sys_system in |