guile-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Guile-commits] branch master updated: Fix define error for mini-gmp


From: Mike Gran
Subject: [Guile-commits] branch master updated: Fix define error for mini-gmp
Date: Tue, 09 Mar 2021 00:17:43 -0500

This is an automated email from the git hooks/post-receive script.

mike121 pushed a commit to branch master
in repository guile.

The following commit(s) were added to refs/heads/master by this push:
     new 870dfc0  Fix define error for mini-gmp
870dfc0 is described below

commit 870dfc0227257edf80d6687d047a47a526d45587
Author: Michael Gran <spk121@yahoo.com>
AuthorDate: Mon Mar 8 21:17:22 2021 -0800

    Fix define error for mini-gmp
    
    * libguile/gen-scmconfig.c [!SCM_I_GSC_ENABLE_MINI_GMP]: define
        SCM_ENABLE_MINI_GMP as zero, not undef
---
 libguile/gen-scmconfig.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libguile/gen-scmconfig.c b/libguile/gen-scmconfig.c
index 44b401f..01b14f1 100644
--- a/libguile/gen-scmconfig.c
+++ b/libguile/gen-scmconfig.c
@@ -382,7 +382,7 @@ main (int argc, char *argv[])
 #if SCM_I_GSC_ENABLE_MINI_GMP == 1
   pf ("#define SCM_ENABLE_MINI_GMP 1\n");
 #else
-  pf ("#undef SCM_ENABLE_MINI_GMP\n");
+  pf ("#define SCM_ENABLE_MINI_GMP 0\n");
 #endif
 
   printf ("#endif\n");



reply via email to

[Prev in Thread] Current Thread [Next in Thread]