summaryrefslogtreecommitdiff
path: root/lang/egcs/files/patch-cp::decl.c
diff options
context:
space:
mode:
authorVasil Dimov <vd@FreeBSD.org>2006-12-12 16:06:42 +0000
committerVasil Dimov <vd@FreeBSD.org>2006-12-12 16:06:42 +0000
commit37a9257fe9e8ce5a248fa0f403fe42340afa2556 (patch)
tree420ecd6da62b5bee338614d54acda8a25a59bc02 /lang/egcs/files/patch-cp::decl.c
parentMake linux-aspell only depend on archivers/bzip2 for the FreeBSD versions (diff)
Remove expired ports:
2006-12-01 print/latex-beamer: is already included in the teTeX distribution 2006-12-01 print/latex-bibtopic: is already included in the teTeX distribution 2006-12-01 print/latex-bibunits: is already included in the teTeX distribution 2006-12-01 print/latex-booktabs: is already included in the teTeX distribution 2006-12-01 print/latex-index: is already included in the teTeX distribution 2006-12-01 print/latex-layouts: is already included in the teTeX distribution 2006-12-01 print/latex-pgf: is already included in the teTeX distribution 2006-12-01 print/latex-subfig: is already included in the teTeX distribution 2006-12-01 print/latex-xcolor: is already included in the teTeX distribution 2006-12-01 print/latex-lineno: is already included in the teTeX distribution 2006-12-01 print/latex-pict2e: is already included in the teTeX distribution 2007-05-31 multimedia/gstreamer-plugins-mpeg2enc80: Obsolete version, use gstreamer 0.10 instead 2006-12-01 lang/gcc30: "This port is no longer in use by anything in the ports collection and will be removed in the future. Use a later release instead." 2006-12-01 lang/egcs: "This port is no longer in use by anything in the ports collection and will be removed in the future. Use a later release of gcc instead" 2006-12-01 graphics/php4-ming: doesn't work with new version of ming library 2006-12-01 graphics/dvipng: is already included in the teTeX distribution
Notes
Notes: svn path=/head/; revision=179575
Diffstat (limited to 'lang/egcs/files/patch-cp::decl.c')
-rw-r--r--lang/egcs/files/patch-cp::decl.c45
1 files changed, 0 insertions, 45 deletions
diff --git a/lang/egcs/files/patch-cp::decl.c b/lang/egcs/files/patch-cp::decl.c
deleted file mode 100644
index fabc992987d7..000000000000
--- a/lang/egcs/files/patch-cp::decl.c
+++ /dev/null
@@ -1,45 +0,0 @@
---- gcc/cp/decl.c.orig 1999/08/26 09:28:46 1.1.1.2
-+++ gcc/cp/decl.c 1999/09/19 10:57:59 1.3
-@@ -19,7 +19,9 @@
- the Free Software Foundation, 59 Temple Place - Suite 330,
- Boston, MA 02111-1307, USA. */
-
-+/* $from_FreeBSD: src/contrib/gcc/cp/decl.c,v 1.3 1999/09/19 10:57:59 obrien Exp $ */
-
-+
- /* Process declarations and symbol lookup for C front end.
- Also constructs types; the standard scalar types at initialization,
- and structure, union, array and enum types when they are declared. */
-@@ -1493,7 +1495,7 @@
- tree t;
- int i = 0, len;
- fprintf (stderr, " blocks=");
-- fprintf (stderr, HOST_PTR_PRINTF, lvl->blocks);
-+ fprintf (stderr, HOST_PTR_PRINTF, (void *) lvl->blocks);
- fprintf (stderr, " n_incomplete=%d parm_flag=%d keep=%d",
- list_length (lvl->incomplete), lvl->parm_flag, lvl->keep);
- if (lvl->tag_transparent)
-@@ -1606,7 +1608,7 @@
- for (level = stack; level != global_binding_level; level = level->level_chain)
- {
- fprintf (stderr, "binding level ");
-- fprintf (stderr, HOST_PTR_PRINTF, level);
-+ fprintf (stderr, HOST_PTR_PRINTF, (void *) level);
- fprintf (stderr, "\n");
- print_binding_level (level);
- }
-@@ -1617,11 +1619,11 @@
- {
- struct binding_level *b;
- fprintf (stderr, "current_binding_level=");
-- fprintf (stderr, HOST_PTR_PRINTF, current_binding_level);
-+ fprintf (stderr, HOST_PTR_PRINTF, (void *) current_binding_level);
- fprintf (stderr, "\nclass_binding_level=");
-- fprintf (stderr, HOST_PTR_PRINTF, class_binding_level);
-+ fprintf (stderr, HOST_PTR_PRINTF, (void *) class_binding_level);
- fprintf (stderr, "\nglobal_binding_level=");
-- fprintf (stderr, HOST_PTR_PRINTF, global_binding_level);
-+ fprintf (stderr, HOST_PTR_PRINTF, (void *) global_binding_level);
- fprintf (stderr, "\n");
- if (class_binding_level)
- {