summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorNathaniel J. Smith <njs@pobox.com>2018-01-05 23:15:34 -0800
committerBenjamin Peterson <benjamin@python.org>2018-01-05 23:15:34 -0800
commit735ae8d139a673b30b321dc10acfd3d14f0d633b (patch)
tree027e039ce309a5617d15cdf7f2ef8a1f711fcaaa /configure.ac
parent502d551c6d782963d26957a9e5ff1588946f233f (diff)
downloadcpython-git-735ae8d139a673b30b321dc10acfd3d14f0d633b.tar.gz
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.ac14
1 files changed, 0 insertions, 14 deletions
diff --git a/configure.ac b/configure.ac
index 9a84e90e34..0a48e41d5c 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