summaryrefslogtreecommitdiff
path: root/config.in
diff options
context:
space:
mode:
authorKevin Ryde <user42@zip.com.au>2000-05-14 00:14:23 +0200
committerKevin Ryde <user42@zip.com.au>2000-05-14 00:14:23 +0200
commitef35a6e40b9c116616b937a968d765e2f923b77c (patch)
treed92bfe107ff615b10dcaeb6a832cb6e2a633c282 /config.in
parenta6b4f65b117f6b3d14181b7851a34fc43a6b467f (diff)
downloadgmp-ef35a6e40b9c116616b937a968d765e2f923b77c.tar.gz
Regenerate for:
* configure.in (WANT_ASSERT, USE_STACK_ALLOC, HAVE_PENTIUM_RDTSC): Put description here, not in acconfig.h. (CALLING_CONVENTIONS_OBJS): New AC_DEFINE (for mpn/tests/try). (HAVE_CALLING_CONVENTIONS): New AM_CONDITIONAL. (AC_CHECK_HEADERS): Add sys/time.h. (AC_CHECK_FUNCS): Add getpagesize, setitimer. (KARATSUBA_SQR_THRESHOLD): Strip trailing comments from the #define when passing through to config.m4. * acconfig.h (PACKAGE, VERSION, WANT_ASSERT, USE_STACK_ALLOC, HAVE_PENTIUM_RDTSC): No need for #undefs, autoheader gets them from configure.in. The diff doesn't show well what's really just some reordering and the configure.in additions.
Diffstat (limited to 'config.in')
-rw-r--r--config.in70
1 files changed, 41 insertions, 29 deletions
diff --git a/config.in b/config.in
index f92d3b5a5..aa940acfa 100644
--- a/config.in
+++ b/config.in
@@ -21,18 +21,9 @@ MA 02111-1307, USA.
*/
-/* --enable-assert option */
-#undef WANT_ASSERT
-
-/* --disable-alloca option */
-#undef USE_STACK_ALLOC
-
/* Define if a limb is long long. */
#undef _LONG_LONG_LIMB
-/* Define if the 80x86 rdtsc instruction is available (pentium and up). */
-#undef HAVE_PENTIUM_RDTSC
-
/* Define if we have native implementation of function. */
#undef HAVE_NATIVE_
#undef HAVE_NATIVE_mpn_add
@@ -95,45 +86,66 @@ MA 02111-1307, USA.
#undef HAVE_NATIVE_mpn_xor_n
#undef HAVE_NATIVE_mpn_xnor_n
+/* Define if mpn/tests has calling conventions checking for the CPU */
+#undef HAVE_CALLING_CONVENTIONS
+
/* Define to 1 if you have the declaration of `optarg', and to 0 if you don't.
*/
#undef HAVE_DECL_OPTARG
-/* Define if you have the <sys/sysctl.h> header file. */
-#undef HAVE_SYS_SYSCTL_H
+/* Define if you have the <getopt.h> header file. */
+#undef HAVE_GETOPT_H
-/* Define if you have the `strtoul' function. */
-#undef HAVE_STRTOUL
+/* Define if you have the `getopt_long' function. */
+#undef HAVE_GETOPT_LONG
-/* Name of package */
-#undef PACKAGE
+/* Define if you have the `getpagesize' function. */
+#undef HAVE_GETPAGESIZE
-/* Define if you have the `sysctlbyname' function. */
-#undef HAVE_SYSCTLBYNAME
+/* Define if the 80x86 rdtsc instruction is available (pentium and up). */
+#undef HAVE_PENTIUM_RDTSC
-/* Define if the system has the type `void'. */
-#undef HAVE_VOID
+/* Define if you have the `setitimer' function. */
+#undef HAVE_SETITIMER
/* Define if cpp supports the ANSI # stringizing operator. */
#undef HAVE_STRINGIZE
+/* Define if you have the <string.h> header file. */
+#undef HAVE_STRING_H
+
+/* Define if you have the `strtoul' function. */
+#undef HAVE_STRTOUL
+
/* Define if you have the `sysconf' function. */
#undef HAVE_SYSCONF
-/* Version number of package */
-#undef VERSION
+/* Define if you have the `sysctlbyname' function. */
+#undef HAVE_SYSCTLBYNAME
-/* Define if you have the `getopt_long' function. */
-#undef HAVE_GETOPT_LONG
+/* Define if you have the <sys/sysctl.h> header file. */
+#undef HAVE_SYS_SYSCTL_H
-/* Define if you have the <getopt.h> header file. */
-#undef HAVE_GETOPT_H
+/* Define if you have the <sys/time.h> header file. */
+#undef HAVE_SYS_TIME_H
+
+/* Define if you have the <unistd.h> header file. */
+#undef HAVE_UNISTD_H
+
+/* Define if the system has the type `void'. */
+#undef HAVE_VOID
+
+/* Name of package */
+#undef PACKAGE
/* Define if you have the ANSI C header files. */
#undef STDC_HEADERS
-/* Define if you have the <string.h> header file. */
-#undef HAVE_STRING_H
+/* ./configure --disable-alloca option, to use stack-alloc.c, not alloca */
+#undef USE_STACK_ALLOC
-/* Define if you have the <unistd.h> header file. */
-#undef HAVE_UNISTD_H
+/* Version number of package */
+#undef VERSION
+
+/* ./configure --enable-assert option, to enable some ASSERT()s */
+#undef WANT_ASSERT