summaryrefslogtreecommitdiff
path: root/lang/egcs/files/patch-am
diff options
context:
space:
mode:
authorDavid E. O'Brien <obrien@FreeBSD.org>2000-11-30 11:39:26 +0000
committerDavid E. O'Brien <obrien@FreeBSD.org>2000-11-30 11:39:26 +0000
commitb3a3e327ec35fa4a4f68fdee430c1756ddfe5ba0 (patch)
treee7f6814cd55c1325b119d187488949134d445431 /lang/egcs/files/patch-am
parentUpdated editors/xemacs-wp-packages 1.1 -> 1.2. Following xemacs' packages have (diff)
This should take this port back to the last version of it for EGCS-1.1.2.
The gcc-2.95.2 bits have been repo copied to ports/lang/gcc295. GCC 2.95.2 does not work for some people's code. GCC 3.0 will be even worse. So it looks like we'll have to keep a port for each version of GCC we've ever used.
Notes
Notes: svn path=/head/; revision=35534
Diffstat (limited to 'lang/egcs/files/patch-am')
-rw-r--r--lang/egcs/files/patch-am19
1 files changed, 12 insertions, 7 deletions
diff --git a/lang/egcs/files/patch-am b/lang/egcs/files/patch-am
index c3c4553367c9..f69f6ffa7798 100644
--- a/lang/egcs/files/patch-am
+++ b/lang/egcs/files/patch-am
@@ -1,7 +1,12 @@
---- gcc/config/t-freebsd.orig Tue Jun 1 17:02:39 1999
-+++ gcc/config/t-freebsd Tue Jun 22 11:05:25 1999
-@@ -1,4 +1,2 @@
- # Don't run fixproto
- STMP_FIXPROTO =
--# Use only native include files
--USER_H = $(EXTRA_HEADERS) $(LANG_EXTRA_HEADERS)
+--- libstdc++/stl/stl_rope.h.orig Fri Feb 20 03:13:44 1998
++++ libstdc++/stl/stl_rope.h Sun Feb 28 03:50:24 1999
+@@ -702,7 +702,8 @@
+ __rope_iterator_base<charT,Alloc>(r.tree_ptr, pos) {}
+ __rope_const_iterator& operator= (const __rope_const_iterator & x) {
+ if (0 != x.buf_ptr) {
+- *this = x;
++ *(static_cast<__rope_iterator_base<charT,Alloc>*>(this)) = x;
++ // bugfix by Kevin Atkinosn (kevina@clark.net) was *this = x;
+ } else {
+ current_pos = x.current_pos;
+ root = x.root;