From 5aa389da9e14ed59dc6b4ed135b1338f6721a2cf Mon Sep 17 00:00:00 2001 From: Tom Callaway Date: Mon, 18 Apr 2005 15:08:01 +0000 Subject: [PATCH] Out with the old patch. --- R-2.0.1-gcc4.patch | 53 ---------------------------------------------- 1 file changed, 53 deletions(-) delete mode 100644 R-2.0.1-gcc4.patch diff --git a/R-2.0.1-gcc4.patch b/R-2.0.1-gcc4.patch deleted file mode 100644 index f89833b..0000000 --- a/R-2.0.1-gcc4.patch +++ /dev/null @@ -1,53 +0,0 @@ ---- R-2.0.1/src/main/connections.c.BAD 2005-03-24 16:59:46.000000000 -0600 -+++ R-2.0.1/src/main/connections.c 2005-03-24 16:56:22.000000000 -0600 -@@ -2194,7 +2194,7 @@ - va_list(ap); - - va_start(ap, format); -- res = con->vfprintf(con, format, ap); -+ res = (con->vfprintf)(con, format, ap); - va_end(ap); - return res; - } -@@ -2292,7 +2292,7 @@ - { - va_list(ap); - va_start(ap, format); -- con->vfprintf(con, format, ap); -+ (con->vfprintf)(con, format, ap); - va_end(ap); - } - ---- R-2.0.1/src/main/printutils.c.BAD 2005-03-24 16:58:59.000000000 -0600 -+++ R-2.0.1/src/main/printutils.c 2005-03-24 16:59:12.000000000 -0600 -@@ -427,7 +427,7 @@ - - do{ - con = getConnection(con_num); -- con->vfprintf(con, format, arg); -+ (con->vfprintf)(con, format, arg); - con->fflush(con); - con_num = getActiveSink(i++); - } while(con_num>0); -@@ -452,7 +452,7 @@ - /* should never happen, but in case of corruption... */ - R_ErrorCon = 2; - } else { -- con->vfprintf(con, format, arg); -+ (con->vfprintf)(con, format, arg); - con->fflush(con); - return; - } ---- R-2.0.1/src/include/R_ext/RS.h.BAD 2005-03-25 07:59:09.000000000 -0600 -+++ R-2.0.1/src/include/R_ext/RS.h 2005-03-25 07:59:26.000000000 -0600 -@@ -34,8 +34,8 @@ - #ifndef STRICT_R_HEADERS - - #define R_PROBLEM_BUFSIZE 4096 --#define PROBLEM {char R_problem_buf[R_PROBLEM_BUFSIZE];sprintf(R_problem_buf, --#define MESSAGE {char R_problem_buf[R_PROBLEM_BUFSIZE];sprintf(R_problem_buf, -+#define PROBLEM {char R_problem_buf[R_PROBLEM_BUFSIZE];(sprintf)(R_problem_buf, -+#define MESSAGE {char R_problem_buf[R_PROBLEM_BUFSIZE];(sprintf)(R_problem_buf, - #define ERROR ),error(R_problem_buf);} - #define RECOVER(x) ),error(R_problem_buf);} - #define WARNING(x) ),warning(R_problem_buf);}