summaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authortege <tege@gmplib.org>2002-02-19 02:55:50 +0100
committertege <tege@gmplib.org>2002-02-19 02:55:50 +0100
commit10771eb65077071674fa4fb188179db21c4cf844 (patch)
tree58ebf2ae654b47bc9ee4e632c03eed4b1f4a76dd /configure
parentbb6a085e894aa3644bc7f3d6d16302063eaced2f (diff)
downloadgmp-10771eb65077071674fa4fb188179db21c4cf844.tar.gz
Clean up *_THRESHOLD names.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure14
1 files changed, 7 insertions, 7 deletions
diff --git a/configure b/configure
index d5191554d..c66b08a56 100755
--- a/configure
+++ b/configure
@@ -3,7 +3,7 @@
# Guess values for system-dependent variables and create Makefiles.
# Generated by Autoconf 2.52.
#
-# Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
+# Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
# Free Software Foundation, Inc.
# This configure script is free software; the Free Software Foundation
# gives unlimited permission to copy, distribute and modify it.
@@ -19553,12 +19553,12 @@ cat >>confdefs.h <<EOF
#define GMP_MPARAM_H_SUGGEST "$gmp_mparam_source"
EOF
-# Copy any KARATSUBA_SQR_THRESHOLD from gmp-mparam.h to config.m4.
+# Copy any SQR_KARATSUBA_THRESHOLD from gmp-mparam.h to config.m4.
# Some versions of sqr_basecase.asm use this.
-tmp_gmp_karatsuba_sqr_threshold=`sed -n 's/^#define KARATSUBA_SQR_THRESHOLD[ ]*\([0-9][0-9]*\).*$/\1/p' $gmp_mparam_source`
+tmp_gmp_karatsuba_sqr_threshold=`sed -n 's/^#define SQR_KARATSUBA_THRESHOLD[ ]*\([0-9][0-9]*\).*$/\1/p' $gmp_mparam_source`
if test -n "$tmp_gmp_karatsuba_sqr_threshold"; then
-echo "define(<KARATSUBA_SQR_THRESHOLD>,<$tmp_gmp_karatsuba_sqr_threshold>)" >> $gmp_tmpconfigm4
+echo "define(<SQR_KARATSUBA_THRESHOLD>,<$tmp_gmp_karatsuba_sqr_threshold>)" >> $gmp_tmpconfigm4
fi
@@ -20138,12 +20138,12 @@ TUNE_SQR_OBJ=
test -d tune || mkdir tune
case $sqr_basecase_source in
*.asm)
- sqr_max=`sed -n 's/^def...(KARATSUBA_SQR_THRESHOLD_MAX, *\([0-9]*\))/\1/p' $sqr_basecase_source`
+ sqr_max=`sed -n 's/^def...(SQR_KARATSUBA_THRESHOLD_MAX, *\([0-9]*\))/\1/p' $sqr_basecase_source`
if test -n "$sqr_max"; then
TUNE_SQR_OBJ=sqr_asm.o
cat >>confdefs.h <<EOF
-#define TUNE_KARATSUBA_SQR_MAX $sqr_max
+#define TUNE_SQR_KARATSUBA_MAX $sqr_max
EOF
fi
@@ -20155,7 +20155,7 @@ EOF
*.c)
TUNE_SQR_OBJ=
cat >>confdefs.h <<\EOF
-#define TUNE_KARATSUBA_SQR_MAX KARATSUBA_SQR_MAX_GENERIC
+#define TUNE_SQR_KARATSUBA_MAX SQR_KARATSUBA_MAX_GENERIC
EOF
cat >tune/sqr_basecase.c <<EOF