From a8450a012ee0968ca1475698ec439f9820566802 Mon Sep 17 00:00:00 2001 From: sada Date: Sun, 24 Nov 2002 13:45:51 +0000 Subject: Unbreak for -current. PR: ports/35549 Submitter: Michael J Estes --- .../files/patch-src::Basic::Types::basic.gen.cc | 75 ++++++++++++++++++++++ .../files/patch-src::Basic::Types::basic.gen.h | 13 ++++ .../patch-src::Convert::Connect::pipes.gen.cc | 19 ++++++ ...patch-src::Typeset::Boxes::Basic::rubber.gen.cc | 11 ++++ .../texmacs/files/patch-src::Window::display.gen.h | 14 ++++ .../texmacs/files/patch-src::Window::event.gen.h | 14 ++++ 6 files changed, 146 insertions(+) create mode 100644 editors/texmacs/files/patch-src::Basic::Types::basic.gen.cc create mode 100644 editors/texmacs/files/patch-src::Basic::Types::basic.gen.h create mode 100644 editors/texmacs/files/patch-src::Convert::Connect::pipes.gen.cc create mode 100644 editors/texmacs/files/patch-src::Typeset::Boxes::Basic::rubber.gen.cc create mode 100644 editors/texmacs/files/patch-src::Window::display.gen.h create mode 100644 editors/texmacs/files/patch-src::Window::event.gen.h diff --git a/editors/texmacs/files/patch-src::Basic::Types::basic.gen.cc b/editors/texmacs/files/patch-src::Basic::Types::basic.gen.cc new file mode 100644 index 000000000000..b8a6ade3dd23 --- /dev/null +++ b/editors/texmacs/files/patch-src::Basic::Types::basic.gen.cc @@ -0,0 +1,75 @@ +--- src/Basic/Types/basic.gen.cc.orig Sun Nov 24 20:58:54 2002 ++++ src/Basic/Types/basic.gen.cc Sun Nov 24 20:59:24 2002 +@@ -26,72 +26,6 @@ + + extern int large_uses; + +-void* +-operator new (register size_t s) +-{ +- register void* ptr; +- s= (s+ WORD_LENGTH+ WORD_LENGTH_INC)&WORD_MASK; +- if (s + #include + #include +-#include + #include + #include + #include +@@ -340,7 +339,7 @@ + ******************************************************************************/ + + string +-connection_start (string name, string session, bool again=FALSE) { ++connection_start (string name, string session, bool again) { + // cout << "Start " << name << ", " << session << "\n"; + if (!connection_declared (name)) + return "Error: connection " * name * " has not been declared"; diff --git a/editors/texmacs/files/patch-src::Typeset::Boxes::Basic::rubber.gen.cc b/editors/texmacs/files/patch-src::Typeset::Boxes::Basic::rubber.gen.cc new file mode 100644 index 000000000000..0ae76389d13d --- /dev/null +++ b/editors/texmacs/files/patch-src::Typeset::Boxes::Basic::rubber.gen.cc @@ -0,0 +1,11 @@ +--- src/Typeset/Boxes/Basic/rubber.gen.cc.orig Sun Nov 24 21:02:01 2002 ++++ src/Typeset/Boxes/Basic/rubber.gen.cc Sun Nov 24 21:02:38 2002 +@@ -185,7 +185,7 @@ + /*****************************************************************************/ + + box +-empty_box (path ip, int x1=0, int y1=0, int x2=0, int y2=0) { ++empty_box (path ip, int x1, int y1, int x2, int y2) { + return new empty_box_rep (ip, x1, y1, x2, y2); + } + diff --git a/editors/texmacs/files/patch-src::Window::display.gen.h b/editors/texmacs/files/patch-src::Window::display.gen.h new file mode 100644 index 000000000000..da85bcc28994 --- /dev/null +++ b/editors/texmacs/files/patch-src::Window::display.gen.h @@ -0,0 +1,14 @@ +--- src/Window/display.gen.h.orig Sun Feb 10 20:37:01 2002 ++++ src/Window/display.gen.h Sun Nov 24 22:30:06 2002 +@@ -19,7 +19,10 @@ + + #ifndef _TIME_T + #define _TIME_T +-typedef long time_t; ++#ifndef _BSD_TIME_T_ ++#define _BSD_TIME_T_ int ++#endif ++typedef _BSD_TIME_T_ time_t; + #endif + + class font; diff --git a/editors/texmacs/files/patch-src::Window::event.gen.h b/editors/texmacs/files/patch-src::Window::event.gen.h new file mode 100644 index 000000000000..252a65b5da4f --- /dev/null +++ b/editors/texmacs/files/patch-src::Window::event.gen.h @@ -0,0 +1,14 @@ +--- src/Window/event.gen.h.orig Mon Dec 10 19:47:09 2001 ++++ src/Window/event.gen.h Sun Nov 24 22:30:56 2002 +@@ -19,7 +19,10 @@ + + #ifndef _TIME_T + #define _TIME_T +-typedef long time_t; ++#ifndef _BSD_TIME_T_ ++#define _BSD_TIME_T_ int ++#endif ++typedef _BSD_TIME_T_ time_t; + #endif + + class window_rep; -- cgit