ports/devel/gprbuild/files/patch-src_gpr__version.adb
John Marino 8483905680 devel/gprbuild: New version as result of gcc-aux upgrade to gcc49
GPRBuild was previously based on the 2012 release, but it never should
have gone past the 2011 issue.  GPRBuild needs to use the same sources as
the GNAT that builds it, but it was built with the embedded sources
instead.  These "GPL" sources were ahead of the "FSF" sources, and
GPRBuild only worked by chance.  Using the proper GNAT Sources (gnat_util)
resulted in build failure!  Now gcc-aux has been updated and now
GPRBuild 2013 can be properly built with FSF GNAT 4.9 sources.
2014-03-14 08:36:59 +00:00

18 lines
568 B
Ada

--- src/gpr_version.adb.orig 2013-04-16 14:36:02.000000000 +0000
+++ src/gpr_version.adb
@@ -65,14 +65,7 @@ package body GPR_Version is
end if;
end loop Last_Loop;
- case Build_Type is
- when Gnatpro =>
- return "Pro " & Gpr_Version & " " & Date & Host;
- when GPL =>
- return "GPL " & Gpr_Version & " " & Date & Host;
- when FSF =>
- return Gpr_Version & " " & Date & Host;
- end case;
+ return Gpr_Version & " " & Date & Host;
end Gpr_Version_String;
end GPR_Version;