Source: gcl
Version: 2.6.12-25
Severity: important
Tags: patch
Usertags: hurd
User: debian-h...@lists.debian.org

Hello,

Currently gcl FTBFS on GNU/Hurd due to a missing #ifdef statement for
__GNU__ The attached patch solves this problem.

Thanks!

Index: gcl-2.6.12/o/main.c
===================================================================
--- gcl-2.6.12.orig/o/main.c
+++ gcl-2.6.12/o/main.c
@@ -179,7 +179,7 @@ get_phys_pages_no_malloc(char n) {
 
 }
 
-#elif defined(__sun__)
+#elif defined(__sun__) || defined(__GNU__)
 
 static ufixnum
 get_phys_pages_no_malloc(char n) {

Reply via email to