From e5bd47e38c127809973159a48cf54284ef83716b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Tue, 1 Aug 2000 23:37:47 +0200 Subject: [PATCH] Added @CROSS@. Rev: src/modules/Gmp/configure.in:1.14 --- src/modules/Gmp/configure.in | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/modules/Gmp/configure.in b/src/modules/Gmp/configure.in index dc04cdf429..328e90527d 100644 --- a/src/modules/Gmp/configure.in +++ b/src/modules/Gmp/configure.in @@ -1,4 +1,4 @@ -# $Id: configure.in,v 1.13 2000/07/05 17:35:31 grubba Exp $ +# $Id: configure.in,v 1.14 2000/08/01 21:37:47 grubba Exp $ AC_INIT(mpz_glue.c) AC_CONFIG_HEADER(gmp_machine.h) AC_ARG_WITH(gmp, [ --with(out)-gmp Support bignums],[],[with_gmp=yes]) @@ -6,6 +6,14 @@ AC_ARG_WITH(bignums, [ --with(out)-bignums Support automatic bignum conversi AC_MODULE_INIT() +# Check if we're cross-compiling. + +CROSS="" +if test "$ac_cv_prog_cc_cross" = "yes"; then + CROSS=".pike" +else :; fi +AC_SUBST(CROSS) + ############################################################################# # Copied from ../../configure.in -- GitLab