mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 14:50:31 -04:00
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.
18 lines
568 B
Ada
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;
|