diff options
author | olgeni <olgeni@FreeBSD.org> | 2003-08-27 18:59:49 +0000 |
---|---|---|
committer | olgeni <olgeni@FreeBSD.org> | 2003-08-27 18:59:49 +0000 |
commit | 9faeb2fdfc5dd9eb293327e651ea45162a72b1b3 (patch) | |
tree | 24b13d1e042550649360944c7e82a7b30d1e5164 /editors | |
parent | 12d102c25a74276f09adacc2af82d1addc21b200 (diff) | |
download | FreeBSD-ports-9faeb2fdfc5dd9eb293327e651ea45162a72b1b3.zip FreeBSD-ports-9faeb2fdfc5dd9eb293327e651ea45162a72b1b3.tar.gz |
Unbreak for -CURRENT.
Diffstat (limited to 'editors')
-rw-r--r-- | editors/texmacs/files/patch-src_System_Link_pipe__link.cpp | 27 | ||||
-rw-r--r-- | editors/texmacs/files/patch-src_Window_display.hpp | 23 | ||||
-rw-r--r-- | editors/texmacs/files/patch-src_Window_event.hpp | 23 |
3 files changed, 73 insertions, 0 deletions
diff --git a/editors/texmacs/files/patch-src_System_Link_pipe__link.cpp b/editors/texmacs/files/patch-src_System_Link_pipe__link.cpp new file mode 100644 index 0000000..e12e3a2 --- /dev/null +++ b/editors/texmacs/files/patch-src_System_Link_pipe__link.cpp @@ -0,0 +1,27 @@ + +$FreeBSD$ + +--- src/System/Link/pipe_link.cpp.orig Thu Jul 31 15:26:38 2003 ++++ src/System/Link/pipe_link.cpp Wed Aug 27 20:35:15 2003 +@@ -10,6 +10,8 @@ + * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + ******************************************************************************/ + ++#include <osreldate.h> ++ + #include "pipe_link.hpp" + #include "sys_utils.hpp" + #include "hashset.hpp" +@@ -20,8 +22,12 @@ + #include <unistd.h> + #include <signal.h> + #include <sys/wait.h> ++#if __FreeBSD_version < 500000 + #ifndef __APPLE__ + #include <malloc.h> ++#endif ++#else ++#include <stdlib.h> + #endif + + hashset<pointer> pipe_link_set; diff --git a/editors/texmacs/files/patch-src_Window_display.hpp b/editors/texmacs/files/patch-src_Window_display.hpp new file mode 100644 index 0000000..53565a8 --- /dev/null +++ b/editors/texmacs/files/patch-src_Window_display.hpp @@ -0,0 +1,23 @@ + +$FreeBSD$ + +--- src/Window/display.hpp.orig Fri Jun 27 17:46:00 2003 ++++ src/Window/display.hpp Wed Aug 27 10:47:48 2003 +@@ -12,12 +12,17 @@ + + #ifndef DISPLAY_H + #define DISPLAY_H ++ ++#include <osreldate.h> ++ + #include "tree.hpp" + #include "bitmap_font.hpp" + ++#if __FreeBSD_version < 500000 + #ifndef _TIME_T + #define _TIME_T + typedef long time_t; ++#endif + #endif + + class font; diff --git a/editors/texmacs/files/patch-src_Window_event.hpp b/editors/texmacs/files/patch-src_Window_event.hpp new file mode 100644 index 0000000..c3a04b4 --- /dev/null +++ b/editors/texmacs/files/patch-src_Window_event.hpp @@ -0,0 +1,23 @@ + +$FreeBSD$ + +--- src/Window/event.hpp.orig Fri Jun 27 17:45:59 2003 ++++ src/Window/event.hpp Wed Aug 27 20:35:35 2003 +@@ -12,12 +12,17 @@ + + #ifndef EVENT_H + #define EVENT_H ++ ++#include <osreldate.h> ++ + #include "tree.hpp" + #include "command.hpp" + ++#if __FreeBSD_version < 500000 + #ifndef _TIME_T + #define _TIME_T + typedef long time_t; ++#endif + #endif + + class window_rep; |