diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2003-05-06 03:49:05 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2003-05-06 03:49:05 +0000 |
commit | 28e7382123cbc7ef132190c6b3c29b101db38cfc (patch) | |
tree | a9d50288bd0e48228abd908a6f7bd8be06c4e7bd /lang/gpc/files/patch-ao | |
parent | PR: 51521 (diff) |
As announced on 27 March 2003 in <20030328052350.GA18971@rot13.obsecurity.org>,
remove these ports that have been broken for >4 months (in many cases much
longer) with no sign of a fix.
Notes
Notes:
svn path=/head/; revision=80201
Diffstat (limited to 'lang/gpc/files/patch-ao')
-rw-r--r-- | lang/gpc/files/patch-ao | 95 |
1 files changed, 0 insertions, 95 deletions
diff --git a/lang/gpc/files/patch-ao b/lang/gpc/files/patch-ao deleted file mode 100644 index e5067d4eaec0..000000000000 --- a/lang/gpc/files/patch-ao +++ /dev/null @@ -1,95 +0,0 @@ -*** toplev.c.orig Thu Mar 23 14:19:51 2000 ---- toplev.c Thu Mar 23 15:57:06 2000 -*************** -*** 304,309 **** ---- 304,315 ---- - - int optimize = 0; - -+ #ifdef GPC -+ /* Nonzero if called with --version (i.e. gpc called with --verbose). */ -+ -+ int version_flag = 0; -+ #endif /* GPC */ -+ - /* Number of error messages and warning messages so far. */ - - int errorcount = 0; -*************** -*** 590,595 **** ---- 596,607 ---- - - int flag_pedantic_errors = 0; - -+ #ifdef GPC -+ /* Nonzero means copy the source input to stderr. */ -+ -+ extern int flag_debug_source; -+ #endif /* GPC */ -+ - /* flag_schedule_insns means schedule insns within basic blocks (before - local_alloc). - flag_schedule_insns_after_reload means schedule insns after -*************** -*** 2897,2902 **** ---- 2909,2921 ---- - #define ASM_FINISH_DECLARE_OBJECT(FILE, DECL, TOP, END) - #endif - -+ /* Dito. */ -+ #ifdef GPC -+ #define NOT_IN_GPC(X) -+ #else /* not GPC */ -+ #define NOT_IN_GPC(X) X -+ #endif /* not GPC */ -+ - /* Forward declarations for nested functions are not "external", - but we need to treat them as if they were. */ - if (TREE_STATIC (decl) || DECL_EXTERNAL (decl) -*************** -*** 2914,2922 **** - /* Don't output anything - when a tentative file-scope definition is seen. - But at end of compilation, do output code for them. */ -! if (! (! at_end && top_level - && (DECL_INITIAL (decl) == 0 -! || DECL_INITIAL (decl) == error_mark_node))) - assemble_variable (decl, top_level, at_end, 0); - if (!output_bytecode - && decl == last_assemble_variable_decl) ---- 2933,2941 ---- - /* Don't output anything - when a tentative file-scope definition is seen. - But at end of compilation, do output code for them. */ -! NOT_IN_GPC ( if (! (! at_end && top_level - && (DECL_INITIAL (decl) == 0 -! || DECL_INITIAL (decl) == error_mark_node))) ) - assemble_variable (decl, top_level, at_end, 0); - if (!output_bytecode - && decl == last_assemble_variable_decl) -*************** -*** 3741,3747 **** ---- 3760,3768 ---- - register int i; - char *filename = 0; - int flag_print_mem = 0; -+ #ifndef GPC - int version_flag = 0; -+ #endif /* not GPC */ - char *p; - - /* save in case md file wants to emit args as a comment. */ -*************** -*** 3956,3961 **** ---- 3977,3987 ---- - case 'R': - sched2_dump = 1; - break; -+ #ifdef GPC -+ case 'Y': -+ flag_debug_source = 1; -+ break; -+ #endif /* GPC */ - case 'y': - set_yydebug (1); - break; |