diff options
author | pav <pav@FreeBSD.org> | 2003-11-20 17:46:18 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2003-11-20 17:46:18 +0800 |
commit | 463bb9c063a966d21f4e0ad97765218e0bc2d35f (patch) | |
tree | dd2312abf95e8d688ddcaf5d495d1a35cfafabf6 /editors/texmacs/files | |
parent | 32bc8195678ec74f4d4709d71ae94ff2fd3f2900 (diff) | |
download | freebsd-ports-gnome-463bb9c063a966d21f4e0ad97765218e0bc2d35f.tar.gz freebsd-ports-gnome-463bb9c063a966d21f4e0ad97765218e0bc2d35f.tar.zst freebsd-ports-gnome-463bb9c063a966d21f4e0ad97765218e0bc2d35f.zip |
- Unbreak fetch by updating to 1.0.2.5
PR: ports/58889
Submitted by: Geoffrey Mainland <mainland@apeiron.net> (maintainer)
Approved by: adamw (mentor)
Diffstat (limited to 'editors/texmacs/files')
3 files changed, 33 insertions, 0 deletions
diff --git a/editors/texmacs/files/patch-src_Guile_Scheme_object.hpp b/editors/texmacs/files/patch-src_Guile_Scheme_object.hpp new file mode 100644 index 000000000000..3a4998beaf31 --- /dev/null +++ b/editors/texmacs/files/patch-src_Guile_Scheme_object.hpp @@ -0,0 +1,11 @@ +--- src/Guile/Scheme/object.hpp.orig Mon Nov 3 01:07:27 2003 ++++ src/Guile/Scheme/object.hpp Mon Nov 3 01:06:19 2003 +@@ -16,7 +16,7 @@ + #include "path.hpp" + #include "command.hpp" + #include "url.hpp" +-#include <libguile.h> ++#include "libguile.h" + + class object_rep: concrete_struct { + SCM handle; diff --git a/editors/texmacs/files/patch-src_Plugins_Freetype_tt_font.cpp b/editors/texmacs/files/patch-src_Plugins_Freetype_tt_font.cpp new file mode 100644 index 000000000000..902e6d0e2e5c --- /dev/null +++ b/editors/texmacs/files/patch-src_Plugins_Freetype_tt_font.cpp @@ -0,0 +1,11 @@ +--- src/Plugins/Freetype/tt_font.cpp.orig Tue Oct 28 11:00:51 2003 ++++ src/Plugins/Freetype/tt_font.cpp Thu Nov 20 01:06:15 2003 +@@ -167,7 +167,7 @@ + E->y3= dy - hh; + E->x4= dx + ww; + E->y4= dy; +- T[i]= E; ++ memcpy(T[i], E, sizeof(E)); + } + bmm= new bitmap_metric_rep (res_name, T, 0, 255); + bmf= new bitmap_font_rep (res_name, B, 0, 255); diff --git a/editors/texmacs/files/patch-src_common.makefile.in b/editors/texmacs/files/patch-src_common.makefile.in new file mode 100644 index 000000000000..5f01e18d96a6 --- /dev/null +++ b/editors/texmacs/files/patch-src_common.makefile.in @@ -0,0 +1,11 @@ +--- src/common.makefile.in.orig Mon Nov 3 00:47:20 2003 ++++ src/common.makefile.in Mon Nov 3 00:47:37 2003 +@@ -224,7 +224,7 @@ + + cxx_flags = $(strip $(CXX) $(1) -c $< -o $@) + cxx_incl = $(call cxx_flags,$(1) $(CXXFREETYPE) $(CXXICONV) $(CXXGUILE) \ +- $(CPPFLAGS) $(CXXFLAGS)) ++ $(CPPFLAGS) $(CXXFLAGS)$(CXXXWINDOW)) + cxx_incl_sys = $(call cxx_flags,$(1) $(CXXFREETYPE) $(CXXICONV) $(CXXGUILE) \ + $(CPPFLAGS) $(DASH_I_DASH) $(2) $(CXXFLAGS)) + |