diff options
Diffstat (limited to 'textproc/opentoken/files')
4 files changed, 0 insertions, 40 deletions
diff --git a/textproc/opentoken/files/opentoken.gpr b/textproc/opentoken/files/opentoken.gpr deleted file mode 100644 index 5ebb27304c93..000000000000 --- a/textproc/opentoken/files/opentoken.gpr +++ /dev/null @@ -1,7 +0,0 @@ -project OpenToken is - for Languages use ("ada"); - for Library_Name use "opentoken"; - for Source_Dirs use ("../../include/opentoken"); - for Library_Dir use "../../lib/opentoken"; - for Externally_Built use "true"; -end OpenToken; diff --git a/textproc/opentoken/files/patch-build_common.gpr b/textproc/opentoken/files/patch-build_common.gpr deleted file mode 100644 index c48e74275e20..000000000000 --- a/textproc/opentoken/files/patch-build_common.gpr +++ /dev/null @@ -1,11 +0,0 @@ ---- build/common.gpr.orig 2014-02-21 20:14:57.000000000 +0000 -+++ build/common.gpr -@@ -41,7 +41,7 @@ project Common is - "-O2", - "-gnat2012", - "-gnatfnoqQ", -- "-gnatwaeL", -+ "-gnatwaL", - "-fstack-check"); - - -- The project file syntax does not let us set a variable in a diff --git a/textproc/opentoken/files/patch-build_release_opentoken.gpr b/textproc/opentoken/files/patch-build_release_opentoken.gpr deleted file mode 100644 index c0ec235ba680..000000000000 --- a/textproc/opentoken/files/patch-build_release_opentoken.gpr +++ /dev/null @@ -1,10 +0,0 @@ ---- build/release/opentoken.gpr.orig 2014-02-21 20:14:57.000000000 +0000 -+++ build/release/opentoken.gpr -@@ -19,7 +19,6 @@ project OpenToken is - package Compiler is - for Default_Switches ("Ada") use - Common.Compiler.Release_Switches & -- Common.Compiler.Style_Checks & - Common.Compiler'Default_Switches ("Ada"); - end Compiler; - diff --git a/textproc/opentoken/files/patch-opentoken-production-parser-lalr-parser__lists.adb b/textproc/opentoken/files/patch-opentoken-production-parser-lalr-parser__lists.adb deleted file mode 100644 index 0c8c4678c883..000000000000 --- a/textproc/opentoken/files/patch-opentoken-production-parser-lalr-parser__lists.adb +++ /dev/null @@ -1,12 +0,0 @@ ---- opentoken-production-parser-lalr-parser_lists.adb.orig 2015-05-10 19:22:40 UTC -+++ opentoken-production-parser-lalr-parser_lists.adb -@@ -484,7 +484,8 @@ package body OpenToken.Production.Parser - is - pragma Unreferenced (Container); - begin -- return (Element => Position.Item'Access); -+ -- WORKAROUND: gcc 6 reports an error for 'Access here; this passes all tests -+ return (Element => Position.Item'Unrestricted_Access); - end Constant_Reference; - - type List_Access_Constant is access constant List; |