summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2018-09-12 06:51:18 -0700
committerGitHub <noreply@github.com>2018-09-12 06:51:18 -0700
commit865c17fb28f8c3275fd94da6ee4ac51472ec874a (patch)
treeb66adfd7ef7d535b923e4d8eabd2475b2acbdbcc /configure
parent7f0d59f3a83cf1a98398b8e5bdfb97c7a71216bd (diff)
downloadcpython-git-865c17fb28f8c3275fd94da6ee4ac51472ec874a.tar.gz
closes bpo-34640: Remove the TANH_PRESERVES_ZERO_SIGN configure check. (GH-9206)
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure47
1 files changed, 0 insertions, 47 deletions
diff --git a/configure b/configure
index 9520446d5d..fe642c439a 100755
--- a/configure
+++ b/configure
@@ -14163,53 +14163,6 @@ cat >>confdefs.h <<_ACEOF
_ACEOF
-# On FreeBSD 6.2, it appears that tanh(-0.) returns 0. instead of
-# -0. on some architectures.
-{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether tanh preserves the sign of zero" >&5
-$as_echo_n "checking whether tanh preserves the sign of zero... " >&6; }
-if ${ac_cv_tanh_preserves_zero_sign+:} false; then :
- $as_echo_n "(cached) " >&6
-else
-
-if test "$cross_compiling" = yes; then :
- ac_cv_tanh_preserves_zero_sign=no
-else
- cat confdefs.h - <<_ACEOF >conftest.$ac_ext
-/* end confdefs.h. */
-
-#include <math.h>
-#include <stdlib.h>
-int main() {
- /* return 0 if either negative zeros don't exist
- on this platform or if negative zeros exist
- and tanh(-0.) == -0. */
- if (atan2(0., -1.) == atan2(-0., -1.) ||
- atan2(tanh(-0.), -1.) == atan2(-0., -1.)) exit(0);
- else exit(1);
-}
-
-_ACEOF
-if ac_fn_c_try_run "$LINENO"; then :
- ac_cv_tanh_preserves_zero_sign=yes
-else
- ac_cv_tanh_preserves_zero_sign=no
-fi
-rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \
- conftest.$ac_objext conftest.beam conftest.$ac_ext
-fi
-
-fi
-
-{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_tanh_preserves_zero_sign" >&5
-$as_echo "$ac_cv_tanh_preserves_zero_sign" >&6; }
-if test "$ac_cv_tanh_preserves_zero_sign" = yes
-then
-
-$as_echo "#define TANH_PRESERVES_ZERO_SIGN 1" >>confdefs.h
-
-fi
-LIBS=$LIBS_SAVE
-
# For multiprocessing module, check that sem_open
# actually works. For FreeBSD versions <= 7.2,
# the kernel module that provides POSIX semaphores