summaryrefslogtreecommitdiff
path: root/math/gambit/files
diff options
context:
space:
mode:
Diffstat (limited to 'math/gambit/files')
-rw-r--r--math/gambit/files/patch-gcmdline.cc18
-rw-r--r--math/gambit/files/patch-gnulib.cc11
-rw-r--r--math/gambit/files/patch-gnulib.h4
3 files changed, 2 insertions, 31 deletions
diff --git a/math/gambit/files/patch-gcmdline.cc b/math/gambit/files/patch-gcmdline.cc
deleted file mode 100644
index fa99b6de3aee..000000000000
--- a/math/gambit/files/patch-gcmdline.cc
+++ /dev/null
@@ -1,18 +0,0 @@
---- sources/gcl/gcmdline.cc.orig Sun Feb 9 02:23:11 2003
-+++ sources/gcl/gcmdline.cc Sun Feb 9 02:26:28 2003
-@@ -81,7 +81,6 @@
- rawTerm.c_iflag &= ~ICRNL;
- rawTerm.c_iflag &= ~IXON;
- rawTerm.c_iflag &= ~IXOFF;
-- rawTerm.c_iflag &= ~IUCLC;
- rawTerm.c_iflag &= ~IXANY;
- rawTerm.c_iflag &= ~IMAXBEL;
-
-@@ -90,7 +89,6 @@
- // rawTerm.c_lflag &= ~ISIG;
- rawTerm.c_lflag |= ISIG;
- rawTerm.c_lflag &= ~ICANON;
-- rawTerm.c_lflag &= ~XCASE;
- rawTerm.c_lflag &= ~ECHO;
-
- rawTerm.c_cc[VTIME] = 0;
diff --git a/math/gambit/files/patch-gnulib.cc b/math/gambit/files/patch-gnulib.cc
deleted file mode 100644
index 23310f76f060..000000000000
--- a/math/gambit/files/patch-gnulib.cc
+++ /dev/null
@@ -1,11 +0,0 @@
---- sources/math/gnulib.cc.orig Sun Feb 9 01:57:37 2003
-+++ sources/math/gnulib.cc Sun Feb 9 01:57:55 2003
-@@ -112,7 +112,7 @@
- v &= chunklimit == chunk->limit;
- _obstack_chunk* p = chunk;
- // allow lots of chances to find bottom!
-- long x = MAXLONG;
-+ long x = LONG_MAX;
- while (p != 0 && x != 0) { --x; p = p->prev; }
- v &= x > 0;
- return v;
diff --git a/math/gambit/files/patch-gnulib.h b/math/gambit/files/patch-gnulib.h
index 80ac59a172d7..c0889b2e39aa 100644
--- a/math/gambit/files/patch-gnulib.h
+++ b/math/gambit/files/patch-gnulib.h
@@ -4,7 +4,7 @@
#ifndef GNULIB_H
#define GNULIB_H
--#ifdef __GNUG__
+-#if defined(__GNUG__) && !defined(__APPLE_CC__)
-#include <_G_config.h>
-#endif // __GNUG__
#include <stddef.h>
@@ -14,7 +14,7 @@
#include <errno.h>
#include <fcntl.h>
--#ifdef __GNUG__
+-#if defined(__GNUG__) && !defined(__APPLE_CC__)
-extern "C" {
-int strcasecmp _G_ARGS((const char*, const char*));
-}